diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample.sln b/samples/app-nexus-productivity/GraphSample/GraphSample.sln
new file mode 100644
index 000000000..74f4fb24a
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample.sln
@@ -0,0 +1,37 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 25.0.1705.4
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraphSample", "GraphSample\GraphSample.csproj", "{5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebBackend", "WebBackend\WebBackend.csproj", "{D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedModels", "SharedModels\SharedModels.csproj", "{DF9E15A1-F437-46FF-9CF7-3B8168199A33}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Release|Any CPU.Build.0 = Release|Any CPU
+ {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Release|Any CPU.Build.0 = Release|Any CPU
+ {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {7A561DA2-F67E-4149-92BF-6BA5D1A8E086}
+ EndGlobalSection
+EndGlobal
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/AI/OpenAIService.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/AI/OpenAIService.cs
new file mode 100644
index 000000000..891a04eb3
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/AI/OpenAIService.cs
@@ -0,0 +1,17 @@
+using Azure;
+using Azure.AI.OpenAI;
+using Microsoft.Extensions.Options;
+using static System.Environment;
+
+namespace GraphSample.AI
+{
+ public class OpenAIService
+ {
+ public readonly string engine = "PlannerOpenAI";
+ public readonly string endpoint = "https://plannerai.openai.azure.com/";
+ public readonly string key = "63448da86da048d49845249803372807";
+
+ public readonly OpenAIClient client = new OpenAIClient(new Uri("https://plannerai.openai.azure.com/"), new AzureKeyCredential("63448da86da048d49845249803372807"));
+
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/App.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/App.razor
new file mode 100644
index 000000000..4330e4ba5
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/App.razor
@@ -0,0 +1,32 @@
+@inject IJSRuntime jsRuntime
+
+
+
+
+
+
+
+
+ @if (context.User.Identity?.IsAuthenticated != true)
+ {
+
+ }
+ else
+ {
+ You are not authorized to access this resource.
+ }
+
+
+
+
+
+ Not found
+
+ Sorry, there's nothing at this address.
+
+
+
+
+
+
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/BlazorAuthProvider.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/BlazorAuthProvider.cs
new file mode 100644
index 000000000..aadb5b3f7
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/BlazorAuthProvider.cs
@@ -0,0 +1,36 @@
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;
+using Microsoft.Kiota.Abstractions;
+using Microsoft.Kiota.Abstractions.Authentication;
+
+namespace GraphSample.Graph
+{
+ public class BlazorAuthProvider : IAuthenticationProvider
+ {
+ private readonly IAccessTokenProviderAccessor accessor;
+
+ public BlazorAuthProvider(IAccessTokenProviderAccessor accessor)
+ {
+ this.accessor = accessor;
+ }
+
+ // Function called every time the GraphServiceClient makes a call
+ public async Task AuthenticateRequestAsync(
+ RequestInformation request,
+ Dictionary? additionalAuthenticationContext = null,
+ CancellationToken cancellationToken = default)
+ {
+ // Request the token from the accessor
+ var result = await accessor.TokenProvider.RequestAccessToken();
+ try{
+ if (result.TryGetToken(out var token))
+ {
+ // Add the token to the Authorization header
+ request.Headers.Add("Authorization", $"Bearer {token.Value}");
+ }
+ }
+ catch(Exception ex){
+ Console.WriteLine(ex.Message);
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClaimsPrincipalExtensions.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClaimsPrincipalExtensions.cs
new file mode 100644
index 000000000..640e6f340
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClaimsPrincipalExtensions.cs
@@ -0,0 +1,102 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT license.
+
+using System.Security.Authentication;
+using System.Security.Claims;
+using Microsoft.Graph.Models;
+
+namespace GraphSample
+{
+ public static class GraphClaimTypes {
+ public const string DateFormat = "graph_dateformat";
+ public const string Email = "graph_email";
+ public const string Photo = "graph_photo";
+ public const string TimeZone = "graph_timezone";
+ public const string TimeFormat = "graph_timeformat";
+ }
+
+ // Helper methods to access Graph user data stored in
+ // the claims principal
+ public static class GraphClaimsPrincipalExtensions
+ {
+ public static string GetUserGraphDateFormat(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.DateFormat);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ public static string GetUserGraphEmail(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Email);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ public static string? GetUserGraphPhoto(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Photo);
+ return claim == null ? null : claim.Value;
+ }
+
+ public static string GetUserGraphTimeZone(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeZone);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ public static string GetUserGraphTimeFormat(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeFormat);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ // Adds claims from the provided User object
+ public static void AddUserGraphInfo(this ClaimsPrincipal claimsPrincipal, User user)
+ {
+ var identity = claimsPrincipal.Identity as ClaimsIdentity;
+ if (identity == null)
+ {
+ throw new AuthenticationException(
+ "ClaimsIdentity is null inside provided ClaimsPrincipal");
+ }
+
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.DateFormat,
+ user.MailboxSettings?.DateFormat ?? "MMMM dd, yyyy"));
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.Email,
+ user.Mail ?? user.UserPrincipalName ?? ""));
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.TimeZone,
+ user.MailboxSettings?.TimeZone ?? "UTC"));
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.TimeFormat,
+ user.MailboxSettings?.TimeFormat ?? "HH:mm"));
+ }
+
+ // Converts a photo Stream to a Data URI and stores it in a claim
+ public static void AddUserGraphPhoto(this ClaimsPrincipal claimsPrincipal, Stream? photoStream)
+ {
+ var identity = claimsPrincipal.Identity as ClaimsIdentity;
+ if (identity == null)
+ {
+ throw new AuthenticationException(
+ "ClaimsIdentity is null inside provided ClaimsPrincipal");
+ }
+
+ if (photoStream != null)
+ {
+ // Copy the photo stream to a memory stream
+ // to get the bytes out of it
+ var memoryStream = new MemoryStream();
+ photoStream.CopyTo(memoryStream);
+ var photoBytes = memoryStream.ToArray();
+
+ // Generate a date URI for the photo
+ var photoUri = $"data:image/png;base64,{Convert.ToBase64String(photoBytes)}";
+
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.Photo, photoUri));
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClientFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClientFactory.cs
new file mode 100644
index 000000000..4a1868a94
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClientFactory.cs
@@ -0,0 +1,38 @@
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;
+using Microsoft.Graph;
+using Microsoft.Kiota.Http.HttpClientLibrary;
+
+namespace GraphSample.Graph
+{
+ public class GraphClientFactory
+ {
+ private readonly IAccessTokenProviderAccessor accessor;
+ private readonly HttpClient httpClient;
+ private readonly ILogger logger;
+ private GraphServiceClient? graphClient;
+
+ public GraphClientFactory(IAccessTokenProviderAccessor accessor,
+ HttpClient httpClient,
+ ILogger logger)
+ {
+ this.accessor = accessor;
+ this.httpClient = httpClient;
+ this.logger = logger;
+ }
+
+ public GraphServiceClient GetAuthenticatedClient()
+ {
+ // Use the existing one if it's there
+ if (graphClient == null)
+ {
+ // Create a GraphServiceClient using a scoped
+ // HttpClient
+ var requestAdapter = new HttpClientRequestAdapter(
+ new BlazorAuthProvider(accessor), null, null, httpClient);
+ graphClient = new GraphServiceClient(requestAdapter);
+ }
+
+ return graphClient;
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphUserAccountFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphUserAccountFactory.cs
new file mode 100644
index 000000000..355d11024
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphUserAccountFactory.cs
@@ -0,0 +1,105 @@
+using System.Security.Claims;
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication;
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;
+using Microsoft.Graph;
+using Microsoft.Graph.Models.ODataErrors;
+
+namespace GraphSample.Graph
+{
+ // Extends the AccountClaimsPrincipalFactory that builds
+ // a user identity from the identity token.
+ // This class adds additional claims to the user's ClaimPrincipal
+ // that hold values from Microsoft Graph
+ public class GraphUserAccountFactoryBeta
+ : AccountClaimsPrincipalFactory
+ {
+ private readonly IAccessTokenProviderAccessor accessor;
+ private readonly ILogger logger;
+
+ private readonly GraphClientFactory clientFactory;
+
+ public GraphUserAccountFactoryBeta(IAccessTokenProviderAccessor accessor,
+ GraphClientFactory clientFactory,
+ ILogger logger)
+ : base(accessor)
+ {
+ this.accessor = accessor;
+ this.clientFactory = clientFactory;
+ this.logger = logger;
+ }
+
+ public async override ValueTask CreateUserAsync(
+ RemoteUserAccount account,
+ RemoteAuthenticationUserOptions options)
+ {
+ // Create the base user
+ var initialUser = await base.CreateUserAsync(account, options);
+
+ // If authenticated, we can call Microsoft Graph
+ if (initialUser?.Identity?.IsAuthenticated ?? false)
+ {
+ try
+ {
+ // Add additional info from Graph to the identity
+ await AddGraphInfoToClaims(accessor, initialUser);
+ }
+ catch (AccessTokenNotAvailableException exception)
+ {
+ logger.LogError($"Graph API access token failure: {exception.Message}");
+ }
+ catch (ServiceException exception)
+ {
+ logger.LogError($"Graph API error: {exception.Message}");
+ logger.LogError($"Response body: {exception.RawResponseBody}");
+ }
+ }
+
+ return initialUser;
+ }
+
+ private async Task AddGraphInfoToClaims(
+ IAccessTokenProviderAccessor accessor,
+ ClaimsPrincipal claimsPrincipal)
+ {
+ var graphClient = clientFactory.GetAuthenticatedClient();
+
+ // Get user profile including mailbox settings
+ // GET /me?$select=displayName,mail,mailboxSettings,userPrincipalName
+ var user = await graphClient.Me.GetAsync(config =>
+ {
+ // Request only the properties used to
+ // set claims
+ config.QueryParameters.Select = new [] { "displayName", "mail", "mailboxSettings", "userPrincipalName" };
+ });
+
+ if (user == null)
+ {
+ throw new Exception("Could not retrieve user from Microsoft Graph.");
+ }
+
+ logger.LogInformation($"Got user: {user.DisplayName}");
+
+ claimsPrincipal.AddUserGraphInfo(user);
+
+ // Get user's photo
+ // GET /me/photos/48x48/$value
+ try
+ {
+ var photo = await graphClient.Me
+ .Photos["48x48"] // Smallest standard size
+ .Content
+ .GetAsync();
+
+ claimsPrincipal.AddUserGraphPhoto(photo);
+ }
+ catch (ODataError err)
+ {
+ Console.WriteLine($"Photo error: ${err?.Error?.Code}");
+ if (err?.Error?.Code != "ImageNotFound")
+ {
+ throw err ?? new Exception("Unknown error getting user photo.");
+ }
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/BlazorAuthProvider.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/BlazorAuthProvider.cs
new file mode 100644
index 000000000..4d163b84a
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/BlazorAuthProvider.cs
@@ -0,0 +1,36 @@
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;
+using Microsoft.Kiota.Abstractions;
+using Microsoft.Kiota.Abstractions.Authentication;
+
+namespace GraphSampleBeta.Graph
+{
+ public class BlazorAuthProvider : IAuthenticationProvider
+ {
+ private readonly IAccessTokenProviderAccessor accessor;
+
+ public BlazorAuthProvider(IAccessTokenProviderAccessor accessor)
+ {
+ this.accessor = accessor;
+ }
+
+ // Function called every time the GraphServiceClient makes a call
+ public async Task AuthenticateRequestAsync(
+ RequestInformation request,
+ Dictionary? additionalAuthenticationContext = null,
+ CancellationToken cancellationToken = default)
+ {
+ // Request the token from the accessor
+ var result = await accessor.TokenProvider.RequestAccessToken();
+ try{
+ if (result.TryGetToken(out var token))
+ {
+ // Add the token to the Authorization header
+ request.Headers.Add("Authorization", $"Bearer {token.Value}");
+ }
+ }
+ catch(Exception ex){
+ Console.WriteLine(ex.Message);
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClaimsPrincipalExtensions.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClaimsPrincipalExtensions.cs
new file mode 100644
index 000000000..d6db938e2
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClaimsPrincipalExtensions.cs
@@ -0,0 +1,102 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT license.
+
+using System.Security.Authentication;
+using System.Security.Claims;
+using Microsoft.Graph.Beta.Models;
+
+namespace GraphSampleBeta
+{
+ public static class GraphClaimTypes {
+ public const string DateFormat = "graph_dateformat";
+ public const string Email = "graph_email";
+ public const string Photo = "graph_photo";
+ public const string TimeZone = "graph_timezone";
+ public const string TimeFormat = "graph_timeformat";
+ }
+
+ // Helper methods to access Graph user data stored in
+ // the claims principal
+ public static class GraphClaimsPrincipalExtensions
+ {
+ public static string GetUserGraphDateFormat(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.DateFormat);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ public static string GetUserGraphEmail(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Email);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ public static string? GetUserGraphPhoto(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Photo);
+ return claim == null ? null : claim.Value;
+ }
+
+ public static string GetUserGraphTimeZone(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeZone);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ public static string GetUserGraphTimeFormat(this ClaimsPrincipal claimsPrincipal)
+ {
+ var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeFormat);
+ return claim == null ? string.Empty : claim.Value;
+ }
+
+ // Adds claims from the provided User object
+ public static void AddUserGraphInfo(this ClaimsPrincipal claimsPrincipal, User user)
+ {
+ var identity = claimsPrincipal.Identity as ClaimsIdentity;
+ if (identity == null)
+ {
+ throw new AuthenticationException(
+ "ClaimsIdentity is null inside provided ClaimsPrincipal");
+ }
+
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.DateFormat,
+ user.MailboxSettings?.DateFormat ?? "MMMM dd, yyyy"));
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.Email,
+ user.Mail ?? user.UserPrincipalName ?? ""));
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.TimeZone,
+ user.MailboxSettings?.TimeZone ?? "UTC"));
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.TimeFormat,
+ user.MailboxSettings?.TimeFormat ?? "HH:mm"));
+ }
+
+ // Converts a photo Stream to a Data URI and stores it in a claim
+ public static void AddUserGraphPhoto(this ClaimsPrincipal claimsPrincipal, Stream? photoStream)
+ {
+ var identity = claimsPrincipal.Identity as ClaimsIdentity;
+ if (identity == null)
+ {
+ throw new AuthenticationException(
+ "ClaimsIdentity is null inside provided ClaimsPrincipal");
+ }
+
+ if (photoStream != null)
+ {
+ // Copy the photo stream to a memory stream
+ // to get the bytes out of it
+ var memoryStream = new MemoryStream();
+ photoStream.CopyTo(memoryStream);
+ var photoBytes = memoryStream.ToArray();
+
+ // Generate a date URI for the photo
+ var photoUri = $"data:image/png;base64,{Convert.ToBase64String(photoBytes)}";
+
+ identity.AddClaim(
+ new Claim(GraphClaimTypes.Photo, photoUri));
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClientFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClientFactory.cs
new file mode 100644
index 000000000..1ab18bb61
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClientFactory.cs
@@ -0,0 +1,38 @@
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;
+using Microsoft.Graph.Beta;
+using Microsoft.Kiota.Http.HttpClientLibrary;
+
+namespace GraphSampleBeta.Graph
+{
+ public class GraphClientFactoryBeta
+ {
+ private readonly IAccessTokenProviderAccessor accessor;
+ private readonly HttpClient httpClient;
+ private readonly ILogger logger;
+ private GraphServiceClient? graphClient;
+
+ public GraphClientFactoryBeta(IAccessTokenProviderAccessor accessor,
+ HttpClient httpClient,
+ ILogger logger)
+ {
+ this.accessor = accessor;
+ this.httpClient = httpClient;
+ this.logger = logger;
+ }
+
+ public GraphServiceClient GetAuthenticatedClient()
+ {
+ // Use the existing one if it's there
+ if (graphClient == null)
+ {
+ // Create a GraphServiceClient using a scoped
+ // HttpClient
+ var requestAdapter = new HttpClientRequestAdapter(
+ new BlazorAuthProvider(accessor), null, null, httpClient);
+ graphClient = new GraphServiceClient(requestAdapter);
+ }
+
+ return graphClient;
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphUserAccountFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphUserAccountFactory.cs
new file mode 100644
index 000000000..836a52578
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphUserAccountFactory.cs
@@ -0,0 +1,100 @@
+using System.Security.Claims;
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication;
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;
+using Microsoft.Graph.Beta;
+using Microsoft.Graph.Beta.Models.ODataErrors;
+
+namespace GraphSampleBeta.Graph
+{
+ // Extends the AccountClaimsPrincipalFactory that builds
+ // a user identity from the identity token.
+ // This class adds additional claims to the user's ClaimPrincipal
+ // that hold values from Microsoft Graph
+ public class GraphUserAccountFactory
+ : AccountClaimsPrincipalFactory
+ {
+ private readonly IAccessTokenProviderAccessor accessor;
+ private readonly ILogger logger;
+
+ private readonly GraphClientFactoryBeta clientFactory;
+
+ public GraphUserAccountFactory(IAccessTokenProviderAccessor accessor,
+ GraphClientFactoryBeta clientFactory,
+ ILogger logger)
+ : base(accessor)
+ {
+ this.accessor = accessor;
+ this.clientFactory = clientFactory;
+ this.logger = logger;
+ }
+
+ public async override ValueTask CreateUserAsync(
+ RemoteUserAccount account,
+ RemoteAuthenticationUserOptions options)
+ {
+ // Create the base user
+ var initialUser = await base.CreateUserAsync(account, options);
+
+ // If authenticated, we can call Microsoft Graph
+ if (initialUser?.Identity?.IsAuthenticated ?? false)
+ {
+ try
+ {
+ // Add additional info from Graph to the identity
+ await AddGraphInfoToClaims(accessor, initialUser);
+ }
+ catch (AccessTokenNotAvailableException exception)
+ {
+ logger.LogError($"Graph API access token failure: {exception.Message}");
+ }
+ }
+
+ return initialUser;
+ }
+
+ private async Task AddGraphInfoToClaims(
+ IAccessTokenProviderAccessor accessor,
+ ClaimsPrincipal claimsPrincipal)
+ {
+ var graphClient = clientFactory.GetAuthenticatedClient();
+
+ // Get user profile including mailbox settings
+ // GET /me?$select=displayName,mail,mailboxSettings,userPrincipalName
+ var user = await graphClient.Me.GetAsync(config =>
+ {
+ // Request only the properties used to
+ // set claims
+ config.QueryParameters.Select = new [] { "displayName", "mail", "mailboxSettings", "userPrincipalName" };
+ });
+
+ if (user == null)
+ {
+ throw new Exception("Could not retrieve user from Microsoft Graph.");
+ }
+
+ logger.LogInformation($"Got user: {user.DisplayName}");
+
+ claimsPrincipal.AddUserGraphInfo(user);
+
+ // Get user's photo
+ // GET /me/photos/48x48/$value
+ try
+ {
+ var photo = await graphClient.Me
+ .Photos["48x48"] // Smallest standard size
+ .Content
+ .GetAsync();
+
+ claimsPrincipal.AddUserGraphPhoto(photo);
+ }
+ catch (ODataError err)
+ {
+ Console.WriteLine($"Photo error: ${err?.Error?.Code}");
+ if (err?.Error?.Code != "ImageNotFound")
+ {
+ throw err ?? new Exception("Unknown error getting user photo.");
+ }
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.csproj b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.csproj
new file mode 100644
index 000000000..bc1a317e5
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.csproj
@@ -0,0 +1,55 @@
+
+
+
+ net7.0
+ enable
+ enable
+
+
+
+ true
+ 10,12,16,20,24,28,32,48
+ Filled,Regular
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.sln b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.sln
new file mode 100644
index 000000000..df24bb754
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 25.0.1705.4
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraphSample", "GraphSample.csproj", "{CBB0CDB8-9381-4551-9D04-4F57B1A78D18}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {AA916FFD-6655-4E0B-A0E3-29B9F8DA9969}
+ EndGlobalSection
+EndGlobal
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ApplicationTracker.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ApplicationTracker.razor
new file mode 100644
index 000000000..fb35a3271
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ApplicationTracker.razor
@@ -0,0 +1,2452 @@
+@page "/applicationtracker"
+@using System.Security.Authentication
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@using SharedModels.Models
+@using GraphSample.ReusableComponents
+@using System.Globalization
+@using System.Diagnostics
+@using System.Timers
+@using System.Text.RegularExpressions
+@using Newtonsoft.Json
+@using Azure.AI.OpenAI
+@using Azure
+
+@inject GraphSample.Services.IBackendApiService backendApiService
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject GraphSample.AI.OpenAIService OpenAIService
+
+
+
+
+
+ @if (fetchingTimelines || creatingApplicant)
+ {
+ Application Dashboard
+
+
+
+ }
+ else if (!isRegistered)
+ {
+ Application Dashboard
+ CreateApplicant()">Start Your Application Journey Now!
+ }
+ else
+ {
+
+
+
+
+ @if (displayMode == DisplayMode.Calendar_Display)
+ {
+
+
+ }
+
+
+ @for (int i = 0; i < timelines.Count(); i ++)
+ {
+ var timeline = timelines[i];
+
+
+
+
+ @if (emailsShowing && emailsShowingTimeline == timeline.timelineID)
+ {
+ {emailsShowing = false; selectedEmail = null;}">Hide Emails
+ }
+ else
+ {
+ ShowEmails(timeline)">Show Emails
+ }
+
+
+ @if (!timeline.archived)
+ {
+ UpdateArchivedStatus(timeline, true)">
+ @if (timeline.hasUnreadEmails)
+ {
+
+
+
+ }
+ @if (timeline.alertLevel == 0)
+ {
+ UpdateAlertLevel(timeline)">
+ }
+ else
+ {
+ UpdateAlertLevel(timeline)">
+ }
+ }
+ else
+ {
+ ShowRemoveTimelineModal(timeline.timelineID)">
+ UpdateArchivedStatus(timeline, false)">
+ }
+
+
+
+
+
+
+ @timeline.role
+
+ }
+
+
+
+
+ @if (!emailsShowing)
+ {
+
+
+ @if (displayMode == DisplayMode.Calendar_Display)
+ {
+
+
+ }
+
+
+ @for (int i = 0; i < timelines.Count(); i++)
+ {
+ var timeline = timelines[i];
+
+
+
+ @if (expandActions && (expandedActionsTimeline == timeline.timelineID))
+ {
+
{ expandActions = expandedActionsTimeline == timeline.timelineID ? (!expandActions) : true; expandedActionsTimeline = timeline.timelineID; }">
+ @* *@
+ Actions
+
+ }
+ else
+ {
+
{ expandAssociatedEmails = false; expandActions = expandedActionsTimeline == timeline.timelineID ? (!expandActions) : true; expandedActionsTimeline = timeline.timelineID; }">
+ @* *@
+ Actions
+
+ }
+ @if (expandActions && (expandedActionsTimeline == timeline.timelineID))
+ {
+
+ { ShowAddEmailModal(timeline.timelineID); }">
+ Add Email Address
+
+ { HandleEmailAutofill(timeline); }">
+ Autofill Email Addresses
+
+ { await AutofillAssessments(timeline); }">
+ Autofill Assessments
+
+
+ }
+
+
+ @if (expandAssociatedEmails && (expandedEmailsTimeline == timeline.timelineID))
+ {
+
{ expandAssociatedEmails = expandedEmailsTimeline == timeline.timelineID ? (!expandAssociatedEmails) : true; expandedEmailsTimeline = timeline.timelineID; }">
+ Hide Email Addresses
+
+ }
+ else
+ {
+
{ expandActions = false; expandAssociatedEmails = expandedEmailsTimeline == timeline.timelineID ? (!expandAssociatedEmails) : true; expandedEmailsTimeline = timeline.timelineID; }">
+ Show Email Addresses
+
+ }
+
+ @if (expandAssociatedEmails && (expandedEmailsTimeline == timeline.timelineID))
+ {
+
+ @if (timeline.associatedEmailAddresses.Count() == 0)
+ {
+
+ None
+
+ }
+ else
+ {
+ @foreach (var email in timeline.associatedEmailAddresses)
+ {
+
+ @email
+ RemoveEmail(email, timeline.timelineID)">
+
+
+
+ }
+ }
+
+ }
+
+
+
+
+ @if (!fillingAssessments || (timeline.timelineID != fillingAssessmentsTimeline))
+ {
+ ShowAddAssessmentModal(timeline)">
+ }
+ else
+ {
+
+ @* *@
+
+
+
+ }
+
+
+ }
+
+
+
+
+ @if (displayMode == DisplayMode.Default_Display)
+ {
+
+
+ @for (int i = 0; i < timelines.Count(); i++)
+ {
+ var timeline = timelines[i];
+
+
+
+ @for (int j = 0; j < timeline.assessments.Count(); j++)
+ {
+ var assessment = timeline.assessments[j];
+
+
+
HandleTypeChange(timeline, assessment, Enum.Parse(e.Value.ToString()))">
+
+ @foreach (AssessmentType option in Enum.GetValues(typeof(AssessmentType)))
+ {
+ @if ((option == AssessmentType.Custom) && (assessment.type == AssessmentType.Custom))
+ {
+ @assessment.customDescription
+ }
+ else
+ {
+ @option
+ }
+
+ }
+
+
RemoveAssessment(assessment, timeline.timelineID)">
+
+
+
HandleStatusChange(timeline, assessment, Enum.Parse(e.Value.ToString()))">
+
+ @foreach (AssessmentStatus option in Enum.GetValues(typeof(AssessmentStatus)))
+ {
+ @option
+
+ }
+
+
+
+ HandleDateChange(timeline, assessment)"> @assessment.date.ToString("dd/MM/yyyy HH:mm")
+ @if (assessment.type == AssessmentType.Online_Assessment)
+ {
+ @if (!assessment.todoScheduled)
+ {
+ SendToDo(assessment, timeline.company, timeline.role, assessment.date, timeline.timelineID)">Schedule Todo
+ }
+ else
+ {
+ RemoveTodo(assessment, timeline.timelineID)">Remove ToDo
+ }
+ }
+
+
+ }
+
+
+
+ }
+
+
+ }
+ else{
+
+ @foreach (var assessmentGroup in sortedAssessments)
+ {
+ var timelineGroups = assessmentGroup.GroupBy(ag => ag.Item1);
+
+
+ @assessmentGroup.Key.ToString("ddd, dd MMM, yyyy")
+
+ @foreach(var timelineGroup in timelineGroups){
+ int index = timelines.FindIndex(tl => tl.timelineID == timelineGroup.Key);
+ var timeline = timelines[index];
+
+ @foreach(var assessmentPair in timelineGroup)
+ {
+ var assessment = assessmentPair.Item2;
+
+
+
HandleTypeChange(timeline, assessment, Enum.Parse(e.Value.ToString()))">
+
+ @foreach (AssessmentType option in Enum.GetValues(typeof(AssessmentType)))
+ {
+ @if ((option == AssessmentType.Custom) && (assessment.type == AssessmentType.Custom) || false)
+ {
+ @assessment.customDescription
+ }
+ else
+ {
+ @option
+ }
+ }
+
+
RemoveAssessment(assessment, assessmentPair.Item1)">
+
+
+
HandleStatusChange(timeline, assessment, Enum.Parse(e.Value.ToString()))">
+
+ @foreach (AssessmentStatus option in Enum.GetValues(typeof(AssessmentStatus)))
+ {
+ @option
+
+ }
+
+
+
+ HandleDateChange(timeline, assessment)"> @assessment.date.ToString("dd/MM/yyyy HH:mm")
+ @if (assessment.type == AssessmentType.Online_Assessment)
+ {
+ @if (!assessment.todoScheduled)
+ {
+ SendToDo(assessment, timeline.company, timeline.role, assessment.date, timeline.timelineID)">Schedule Todo
+ }
+ else
+ {
+ RemoveTodo(assessment, timeline.timelineID)">Remove ToDo
+ }
+ }
+
+
+ }
+
+ }
+
+ }
+
+ }
+
+
+ }
+ else {
+
+ }
+
+
+
+
+ @if (emailsShowing){
+ @if (fetchingEmails)
+ {
+
+ }
+ else
+ {
+ if (selectedEmail== null)
+ {
+ var tmpEmails = filteresSelectedEmails == null ? selectedAssociatedEmails : filteresSelectedEmails;
+
+
+ SearchValue = e.Value?.ToString())"
+ @onchange=HandleClear
+ Placeholder="Search"
+ style="height: 100%; font-size: 14px;"/>
+
+
+ @foreach (var email in tmpEmails)
+ {
+ HandleEmailClick(email)">
+ @if (email.IsRead.HasValue ? !email.IsRead.Value : false)
+ {
+
+
+
+ }
+ else
+ {
+
+
+
+ }
+ @email.Sender?.EmailAddress?.Address
+ @email.Subject
+ @email.ReceivedDateTime?.DateTime.ToString("HH:mm:ss")
+ @email.ReceivedDateTime?.DateTime.ToString("ddd, dd MMM, yyyy")
+
+ }
+
+
+ }
+ else{
+
+
+ {selectedEmail = null; StateHasChanged();}">
+
+
+ From: @selectedEmail.Sender?.EmailAddress?.Address
+ Subject: @selectedEmail.Subject
+ @selectedEmail.ReceivedDateTime?.DateTime.ToString("ddd, dd MMM, yyyy HH:mm")
+
+
+ @((MarkupString)selectedEmail.Body.Content)
+
+
+ }
+ }
+ }
+ else {
+
+
+ }
+
+
+
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code {
+
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+
+ private GraphServiceClient? graphClient;
+ private string? dateTimeFormat;
+ private string userTimeZone = string.Empty;
+ private List? timelines;
+ private bool emailsShowing;
+ private DisplayMode displayMode = DisplayMode.Default_Display;
+
+ private enum DisplayMode {
+ Default_Display,
+ Calendar_Display,
+ }
+
+ private List>? sortedAssessments;
+ private int emailsShowingTimeline;
+
+ private Message? selectedEmail = null;
+ //private List? selectedAssociatedEmails;
+ private List selectedAssociatedEmails;
+ private List? filteresSelectedEmails;
+ string? searchValue = string.Empty;
+
+ private string? SearchValue
+ {
+ get => searchValue;
+ set
+ {
+ if (value != searchValue)
+ {
+ searchValue = value;
+ DisposeTimer();
+ //Add the debounce time in ms to the timer below
+ timer = new Timer(1500);
+ timer.Elapsed += TimerElapsed_TickAsync;
+ timer.Enabled = true;
+ timer.Start();
+ }
+ }
+ }
+ private bool emailSearchIsFocused;
+ private static Timer timer;
+ private System.Threading.Timer debounceTimer;
+ private bool isSearchPending;
+
+ private int autofillProgress;
+
+ private IList toDos = new List();
+ Dictionary TaskLists = new Dictionary();
+ private string selectedList = "Tasks";
+
+ private bool fetchingEmails = false;
+ private bool fetchingTimelines = false;
+ private bool creatingApplicant = false;
+
+ private bool fillingAssessments = false;
+
+ private int fillingAssessmentsTimeline = -1;
+
+ private string Username;
+ private bool isRegistered;
+
+ private bool expandAssociatedEmails = false;
+ private int expandedEmailsTimeline = -1;
+
+ private bool expandActions = false;
+ private int expandedActionsTimeline = -1;
+
+ private IList allMessages = new List();
+ public HashSet allSenders;
+
+ private SortingCriteria sortingCriterion = SortingCriteria.Date_Added;
+ private enum SortingCriteria
+ {
+ Date_Added,
+ Starred_First,
+ Unread_Emails_First,
+ }
+
+ bool IsHovered { get; set; }
+
+ private string GetRightDivClass()
+ {
+ return emailsShowing ? "hidden" : "right-div";
+ }
+
+ protected override async Task OnInitializedAsync()
+
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ var user = (await authenticationStateTask).User;
+ Username = user.Identity?.Name;
+ var graphTimeZone = user.GetUserGraphTimeZone();
+ dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}";
+ var startOfWeek = GetUtcStartOfWeekInTimeZone(DateTime.Today, graphTimeZone);
+ var endOfWeek = startOfWeek.AddDays(7);
+
+ graphClient = clientFactory.GetAuthenticatedClient();
+ emailsShowing = false;
+ fetchingTimelines = true;
+ timelines = await backendApiService.getUserTimelinesAsync(Username);
+
+ if (timelines != null)
+ {
+
+ isRegistered = true;
+ List allAssociatedEmails = new();
+ HashSet allAssociatedEmailStrings = new();
+ foreach (var currentAssociatedEmails in timelines.Select(t => t.associatedEmailAddresses))
+ {
+ foreach (var email in currentAssociatedEmails)
+ {
+ allAssociatedEmailStrings.Add(email);
+ }
+ }
+
+ var fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings);
+ var groupedEmails = (fetchedEmails.Count() == 0 ? null : (fetchedEmails.Where(msg => ((msg.Sender.EmailAddress != null) && (msg.Sender != null))).GroupBy(msg => msg.Sender.EmailAddress.Address).
+ ToDictionary(group => group.Key, group => group.ToList())));
+
+ if (groupedEmails != null)
+ {
+ for (int i = 0; i < timelines.Count(); i++)
+ {
+ var timeline = timelines[i];
+ bool loopFlag = false;
+ foreach (var email in timeline.associatedEmailAddresses)
+ {
+ if (loopFlag) { break; }
+ if (groupedEmails.ContainsKey(email))
+ {
+ var messages = groupedEmails[email];
+ foreach (var msg in messages)
+ {
+ if (msg.IsRead == false)
+ {
+ timelines[i].hasUnreadEmails = true;
+ loopFlag = true;
+ break;
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+ var mailPage = await graphClient.Me
+ .MailFolders["Inbox"]
+ .Messages
+ .GetAsync(config =>
+ {
+ config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\"");
+ config.QueryParameters.Select = new string[] { "sender" };
+ config.QueryParameters.Orderby = new string[] { "receivedDateTime desc" };
+ config.QueryParameters.Top = 999;
+ });
+
+ allMessages = mailPage?.Value ?? new List();
+ allSenders = new HashSet(allMessages.Select(msg => msg.Sender.EmailAddress.Address));
+
+ fetchingTimelines = false;
+
+ var getLists = await graphClient.Me.Todo.Lists.GetAsync();
+ toDos = getLists?.Value ?? new List();
+
+ foreach (var item in toDos)
+ {
+ if (item == null)
+ {
+ throw new ArgumentNullException(nameof(item));
+ }
+ if (item.DisplayName != null)
+ {
+ TaskLists[item.DisplayName] = item.Id;
+ }
+ }
+
+
+ }
+ else
+ {
+ isRegistered = false;
+ }
+
+ fetchingTimelines = false;
+ sortedAssessments = GetSortedAssessments();
+ HandleSortCriterionChange();
+ }
+ public async void ShowEmails(ApplicationTimeline timeline)
+ {
+ emailsShowing = true;
+ emailsShowingTimeline = timeline.timelineID;
+ await GetAssociatedEmails(timeline);
+ }
+
+ public async Task GetAssociatedEmails(ApplicationTimeline timeline)
+ {
+ fetchingEmails = true;
+ HashSet allAssociatedEmailStrings = new();
+ List? fetchedEmails = new();
+
+ if (timeline.associatedEmailAddresses.Count() == 0)
+ {
+ selectedAssociatedEmails = new List();
+ fetchingEmails = false;
+ StateHasChanged();
+ return;
+ }
+
+ foreach (var email in timeline.associatedEmailAddresses)
+ {
+ allAssociatedEmailStrings.Add(email);
+ }
+
+ fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings);
+ if (fetchedEmails != null)
+ {
+ selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList();
+ }
+
+ fetchingEmails = false;
+ StateHasChanged();
+ }
+
+ public async void RemoveEmail(string email, int timelineID)
+ {
+
+ int index = timelines.FindIndex(tl => tl.timelineID == timelineID);
+
+ timelines[index].associatedEmailAddresses.RemoveAll(e => e == email);
+ StateHasChanged();
+ var response = await backendApiService.removeEmail(email, Username, timelineID);
+
+
+ if (response)
+ {
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID);
+ HashSet allAssociatedEmailStrings = new();
+ foreach (var emailString in newTimeline.associatedEmailAddresses)
+ {
+ allAssociatedEmailStrings.Add(emailString);
+ }
+
+ if (allAssociatedEmailStrings.Count() == 0)
+ {
+ if (index != -1)
+ {
+ newTimeline.hasUnreadEmails = false;
+ timelines[index] = newTimeline;
+
+ StateHasChanged();
+ }
+
+ }
+ else
+ {
+ var fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings);
+
+ if (index != -1)
+ {
+ newTimeline.hasUnreadEmails = fetchedEmails.Exists(msg => msg.IsRead.HasValue ? !msg.IsRead.Value : false);
+ timelines[index] = newTimeline;
+ HandleSortCriterionChange();
+ StateHasChanged();
+ }
+ }
+ }
+ }
+
+
+ public async void RemoveAssessment(Assessment assessment, int timelineID)
+ {
+ var response = await backendApiService.removeAssessment(assessment, Username, timelineID);
+
+ if (response)
+ {
+ int index = timelines.FindIndex(tl => tl.timelineID == timelineID);
+ timelines[index].assessments.RemoveAll(a => a.date == assessment.date);
+ StateHasChanged();
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID);
+ if (index != -1)
+ {
+ newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails;
+ timelines[index] = newTimeline;
+ StateHasChanged();
+ }
+ }
+
+ }
+
+ private async Task UpdateArchivedStatus(ApplicationTimeline timeline, bool newStatus)
+ {
+ bool oldStatus = timeline.archived;
+ timeline.archived = newStatus;
+ HandleSortCriterionChange();
+ StateHasChanged();
+ bool result = await backendApiService.updateArchivedStatus(timeline.timelineID, Username, newStatus);
+ if(!result)
+ {
+ timeline.archived = oldStatus;
+ HandleSortCriterionChange();
+ StateHasChanged();
+ }
+ }
+
+
+ public async void CreateApplicant()
+ {
+ creatingApplicant = true;
+ var response = await backendApiService.createApplicant(Username);
+
+ if (response)
+ {
+ timelines = new List();
+ isRegistered = true;
+ creatingApplicant = false;
+ StateHasChanged();
+ }
+
+ }
+
+ public async void UpdateAlertLevel(ApplicationTimeline timeline)
+ {
+ int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID);
+ int newLevel;
+ int oldLevel = timelines[index].alertLevel;
+
+ if (index != -1)
+ {
+
+ newLevel = (timelines[index].alertLevel + 1) % 2;
+ timelines[index].alertLevel = newLevel;
+ StateHasChanged();
+ HandleSortCriterionChange();
+ StateHasChanged();
+
+ var response = await backendApiService.updateAlertLevel(timeline.timelineID, Username, newLevel);
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID);
+
+ if (newTimeline != null)
+ {
+ int newIndex = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID);
+ newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails;
+ timelines[newIndex] = newTimeline;
+ HandleSortCriterionChange();
+ //StateHasChanged();
+ }
+ else if (!response)
+ {
+ timelines[index].alertLevel = oldLevel;
+ //StateHasChanged();
+ }
+ }
+ }
+
+ private async Task HandleStatusChange(ApplicationTimeline timeline, Assessment assessment, AssessmentStatus newStatus)
+ {
+ int assessmentsIndex = timeline.assessments.FindIndex(a => a.date == assessment.date);
+ timeline.assessments[assessmentsIndex].status = newStatus;
+ StateHasChanged();
+ var response = await backendApiService.updateAssessmentStatus(assessment, Username, timeline.timelineID, newStatus);
+ if (response)
+ {
+ int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID);
+ if (index != -1)
+ {
+ var assessments = timelines[index].assessments;
+ int assessmentsIndex2 = assessments.FindIndex(a => a.date == assessment.date);
+ assessments[assessmentsIndex2].status = newStatus;
+ StateHasChanged();
+ }
+ }
+
+ }
+
+ private async Task HandleTypeChange(ApplicationTimeline timeline, Assessment assessment, AssessmentType newType)
+ {
+ var oldType = assessment.type;
+ var oldDescription = assessment.customDescription;
+ string? customDescription = null;
+ int assessmentsIndex = timeline.assessments.FindIndex(a => a.date == assessment.date);
+ timeline.assessments[assessmentsIndex].type = newType;
+ StateHasChanged();
+ if (newType == AssessmentType.Custom)
+ {
+ var messageForm = ModalInputPopup.Show();
+ var result = await messageForm.Result;
+
+ if (result.Confirmed)
+ {
+ customDescription = result?.Data?.ToString();
+ }
+ }
+ timeline.assessments[assessmentsIndex].customDescription = customDescription;
+ StateHasChanged();
+
+ var response = await backendApiService.updateAssessmentType(assessment, Username, timeline.timelineID, newType, customDescription);
+ if (response)
+ {
+ int assessmentsIndex2 = timeline.assessments.FindIndex(a => a.date == assessment.date);
+ timeline.assessments[assessmentsIndex2].type = newType;
+ timeline.assessments[assessmentsIndex2].customDescription = customDescription;
+ StateHasChanged();
+ }
+ else
+ {
+ int assessmentsIndex2 = timeline.assessments.FindIndex(a => a.date == assessment.date);
+ timeline.assessments[assessmentsIndex2].type = oldType;
+ timeline.assessments[assessmentsIndex2].customDescription = oldDescription;
+ StateHasChanged();
+
+ }
+ }
+
+ private async Task HandleDateChange(ApplicationTimeline timeline, Assessment assessment)
+ {
+ var oldDate = assessment.date;
+ DateTimeOffset? newDate = null;
+ int assessmentsIndex = timeline.assessments.FindIndex(a => a.date == assessment.date);
+ var parameters = new ModalParameters()
+ .Add(nameof(oldDate), oldDate);
+
+ var messageForm = ModalInputPopup.Show("Passing Data", parameters);
+ var result = await messageForm.Result;
+
+ if (result.Confirmed)
+ {
+ newDate = result.Data as DateTimeOffset?;
+ }
+
+ if(newDate == null){
+ return;
+ }
+
+ timeline.assessments[assessmentsIndex].date = newDate.Value;
+ timeline.assessments.Sort((a1, a2) => a1.date.CompareTo(a2.date));
+ HandleDisplayChange();
+ StateHasChanged();
+
+ var response = await backendApiService.updateAssessments(timeline.assessments, Username, timeline.timelineID);
+ int assessmentsIndex2 = -1;
+ if (!response)
+ {
+ assessmentsIndex2 = timeline.assessments.FindIndex(a => a.date == newDate);
+ timeline.assessments[assessmentsIndex2].date = oldDate;
+ timeline.assessments.Sort((a1, a2) => a1.date.CompareTo(a2.date));
+ HandleDisplayChange();
+ StateHasChanged();
+
+ }
+
+ }
+
+ private void HandleSortCriterionChange()
+ {
+ if(timelines == null)
+ {
+ return;
+ }
+ switch (sortingCriterion)
+ {
+ case SortingCriteria.Date_Added:
+ timelines.Sort((t1, t2) =>
+ {
+
+ if (t1.archived && t2.archived)
+ return 0;
+
+ else if (!t1.archived && t2.archived)
+ return -1;
+
+ else if (t1.archived && !t2.archived)
+ return 1;
+
+ return t1.timelineID.CompareTo(t2.timelineID);
+ }
+ );
+ break;
+
+ case SortingCriteria.Starred_First:
+ timelines.Sort((t1, t2) =>
+ {
+ if (t1.archived && t2.archived)
+ return 0;
+
+ else if (!t1.archived && t2.archived)
+ return -1;
+
+ else if (t1.archived && !t2.archived)
+ return 1;
+
+ int heightComparison = t2.alertLevel.CompareTo(t1.alertLevel);
+ if (heightComparison != 0)
+ return heightComparison;
+ else
+ return t2.timelineID.CompareTo(t2.timelineID);
+ });
+ break;
+ case SortingCriteria.Unread_Emails_First:
+ timelines.Sort((t1, t2) =>
+ {
+ if (t1.archived && t2.archived)
+ return 0;
+
+ else if (!t1.archived && t2.archived)
+ return -1;
+
+ else if (t1.archived && !t2.archived)
+ return 1;
+
+ return (t1.hasUnreadEmails ? 0 : 1).CompareTo(t2.hasUnreadEmails ? 0 : 1);
+ });
+ break;
+ }
+ }
+
+ private async Task HandleEmailClick(Message email)
+ {
+ selectedEmail = email;
+ StateHasChanged();
+
+ var updatedEmail = new Message
+ {
+ IsRead = true
+ };
+
+ try
+ {
+ await graphClient.Me.Messages[email.Id].PatchAsync(updatedEmail);
+ email.IsRead = true;
+ StateHasChanged();
+ }
+ catch (Exception ex)
+ {
+ ;
+ }
+
+ }
+
+ private async Task SendToDo(Assessment assessment, string company, string role, DateTimeOffset dueDate, int timelineID)
+ {
+ assessment.todoScheduled = true;
+
+ var listsResult = await graphClient.Me.Todo.Lists.GetAsync();
+ var lists = listsResult.Value;
+
+ bool tasksExists = lists.Any(list => list.DisplayName.Equals("Tasks", StringComparison.OrdinalIgnoreCase));
+ if (!tasksExists)
+ {
+ var creationRequestBody = new TodoTaskList
+ {
+ DisplayName = "Tasks"
+ };
+ var tasksCreationResult = await graphClient.Me.Todo.Lists.PostAsync(creationRequestBody);
+ if (tasksCreationResult == null)
+ {
+ assessment.todoScheduled = false;
+ return;
+ }
+ else
+ {
+ TaskLists[tasksCreationResult.DisplayName] = tasksCreationResult.Id;
+ }
+ }
+
+ var requestBody = new TodoTask
+ {
+ Title = $"Online assessment for the {role} position at {company}",
+ DueDateTime = new DateTimeTimeZone
+ {
+ DateTime = dueDate.ToString("MM/dd/yyyy HH:mm:ss", CultureInfo.GetCultureInfo("en-US")),
+ TimeZone = TimeZoneInfo.Local.Id
+ },
+ ReminderDateTime = new DateTimeTimeZone
+ {
+ DateTime = dueDate.AddDays(-1).ToString("MM/dd/yyyy HH:mm:ss", CultureInfo.GetCultureInfo("en-US")),
+ TimeZone = TimeZoneInfo.Local.Id
+ }
+ };
+
+ try
+ {
+ var todoTask = await graphClient.Me.Todo.Lists[TaskLists[selectedList]].Tasks
+ .PostAsync(requestBody);
+ assessment.taskId = todoTask.Id;
+ var result = await backendApiService.updateAssessmentTodo(assessment, Username, timelineID, true);
+ if (!result)
+ {
+ assessment.todoScheduled = false;
+ assessment.taskId = null;
+ }
+ }
+ catch
+ {
+ assessment.todoScheduled = false;
+ assessment.taskId = null;
+ }
+
+ }
+
+ private async Task RemoveTodo(Assessment assessment, int timelineID)
+ {
+ assessment.todoScheduled = false;
+ string oldId = assessment.taskId;
+ assessment.taskId = null;
+
+ var result = await backendApiService.updateAssessmentTodo(assessment, Username, timelineID, false);
+
+ if (result)
+ {
+
+ try
+ {
+ await graphClient.Me.Todo.Lists[TaskLists["Tasks"]].Tasks[oldId].DeleteAsync();
+ }
+ catch (Exception err)
+ {
+ assessment.todoScheduled = true;
+ }
+ }
+ else
+ {
+ assessment.todoScheduled = true;
+ }
+ }
+
+ private async Task HandleEmailAutofill(ApplicationTimeline? timeline)
+ {
+ if (timeline is not null && !string.IsNullOrWhiteSpace(timeline.company))
+ {
+ string searchTerm = timeline.company.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = allSenders.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0)
+ {
+ foreach (var email in temp)
+ {
+ if (!timeline.associatedEmailAddresses.Contains(email))
+ {
+ timeline.associatedEmailAddresses.Add(email);
+ }
+ }
+ }
+ }
+ expandActions = false;
+ expandAssociatedEmails = true;
+ expandedEmailsTimeline = timeline.timelineID;
+ StateHasChanged();
+
+ int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID);
+ var fetchedEmails = await GetEmailsFromAddresses(new HashSet(timeline.associatedEmailAddresses));
+ bool newHasUnread = fetchedEmails.Exists(msg => msg.IsRead.HasValue ? !msg.IsRead.Value : false);
+ timelines[index].hasUnreadEmails = newHasUnread;
+
+
+ var response = await backendApiService.addEmails(timeline.associatedEmailAddresses, Username, timeline.timelineID);
+
+ if (response)
+ {
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID);
+
+ newTimeline.hasUnreadEmails = timeline.hasUnreadEmails ? true : newHasUnread;
+ timelines[index] = newTimeline;
+ HandleSortCriterionChange();
+ StateHasChanged();
+ }
+ }
+
+ }
+
+
+ ///////////////////////////////////////
+ //////Email Search Section ////////////
+ ///////////////////////////////////////
+
+ private void HandleEmailsSearchTest(ChangeEventArgs args)
+ {
+
+ if (isSearchPending)
+ {
+ return;
+ }
+
+ isSearchPending = true;
+
+ debounceTimer?.Dispose();
+
+ debounceTimer = new System.Threading.Timer((state) =>
+ {
+
+ if (args is not null && !string.IsNullOrWhiteSpace(args.Value?.ToString()))
+ {
+ string searchTerm = args.Value.ToString()!.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = selectedAssociatedEmails.Where(msg => ($"{msg.Sender?.EmailAddress?.Address} {msg.Subject}").ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0)
+ {
+ filteresSelectedEmails = temp;
+ }
+ }
+ else
+ {
+ filteresSelectedEmails = null;
+ }
+ }
+ else
+ {
+ filteresSelectedEmails = null;
+ }
+
+ InvokeAsync(StateHasChanged);
+
+ isSearchPending = false;
+ }, null, (int)TimeSpan.FromMilliseconds(300).TotalMilliseconds, -1);
+ }
+
+
+ private void HandleEmailSearchFocus(){
+
+ timer = new Timer(500);
+
+ timer.Elapsed += HandleEmailsSearchTest2;
+
+ timer.Start();
+ }
+
+ private void HandleEmailSearchBlur(){
+
+ emailSearchIsFocused = false;
+ timer?.Stop();
+ timer?.Dispose();
+ }
+ private void HandleEmailsSearchTest2(object? sender, ElapsedEventArgs e)
+ {
+
+ if (searchValue is not null && !string.IsNullOrWhiteSpace(searchValue))
+ {
+ string searchTerm = searchValue.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = selectedAssociatedEmails.Where(msg => ($"{msg.Sender?.EmailAddress?.Address} {msg.Subject}").ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0)
+ {
+ filteresSelectedEmails = temp;
+ }
+ }
+ else
+ {
+ filteresSelectedEmails = null;
+ }
+ }
+ else
+ {
+ filteresSelectedEmails = null;
+ }
+
+ }
+
+ private async Task HandleEmailsSearch()
+ {
+
+ if (searchValue is not null && !string.IsNullOrWhiteSpace(searchValue))
+ {
+ string searchTerm = searchValue.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = selectedAssociatedEmails.Where(msg => ($"{msg.Sender?.EmailAddress?.Address} {msg.Subject}").ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0)
+ {
+ filteresSelectedEmails = temp;
+ }
+ }
+ else
+ {
+ filteresSelectedEmails = null;
+ }
+ }
+ else
+ {
+ filteresSelectedEmails = null;
+ }
+
+ await InvokeAsync(StateHasChanged);
+
+ }
+
+
+ private async void TimerElapsed_TickAsync(object? sender, EventArgs e)
+ {
+ DisposeTimer();
+ await HandleEmailsSearch();
+ }
+
+ private void DisposeTimer()
+ {
+ if (timer != null)
+ {
+ timer.Enabled = false;
+ timer.Elapsed -= TimerElapsed_TickAsync;
+ timer.Dispose();
+ timer = null;
+ }
+ }
+
+ private void HandleClear(ChangeEventArgs args)
+ {
+ if (args is not null && string.IsNullOrWhiteSpace(args.Value?.ToString()))
+ {
+ DisposeTimer();
+ filteresSelectedEmails = null;
+ SearchValue = string.Empty;
+ StateHasChanged();
+ }
+ }
+
+
+ ///////////////////////////////////////
+ //////Email Search Section ////////////
+ ///////////////////////////////////////
+
+
+ [CascadingParameter] IModalService ModalInputPopup { get; set; } = default!;
+
+ private async Task ShowAddEmailModal(int timelineID)
+ {
+ var parameters = new ModalParameters()
+ .Add(nameof(ApplicationTracker.allSenders), allSenders);
+
+ var inputPopupModal = ModalInputPopup.Show("Passing Data", parameters);
+ var result = await inputPopupModal.Result;
+
+ if (result.Confirmed)
+ {
+ string newEmail = result.Data?.ToString();
+ if (newEmail != "")
+ {
+ int index = timelines.FindIndex(tl => tl.timelineID == timelineID);
+
+ if (!timelines[index].associatedEmailAddresses.Contains(newEmail))
+ {
+ timelines[index].associatedEmailAddresses.Add(newEmail);
+ }
+ else
+ {
+ expandActions = false;
+ expandAssociatedEmails = true;
+ expandedEmailsTimeline = timelineID;
+ StateHasChanged();
+ return;
+
+ }
+
+ expandActions = false;
+ expandAssociatedEmails = true;
+ expandedEmailsTimeline = timelineID;
+ StateHasChanged();
+
+ var response = await backendApiService.addEmail(newEmail, Username, timelineID);
+
+ var fetchedEmails = await GetEmailsFromAddresses(new HashSet(new [] {newEmail}));
+ bool newHasUnread = fetchedEmails.Exists(msg => msg.IsRead.HasValue ? !msg.IsRead.Value : false);
+ if (response)
+ {
+ index = timelines.FindIndex(tl => tl.timelineID == timelineID);
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID);
+ if (index != -1)
+ {
+
+ newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails ? true : newHasUnread;
+ timelines[index] = newTimeline;
+ HandleSortCriterionChange();
+ StateHasChanged();
+ }
+ }
+
+ }
+ }
+ }
+
+ private async Task ShowAddTimelineModal()
+ {
+ var inputPopupModal = ModalInputPopup.Show();
+ var result = await inputPopupModal.Result;
+
+ if (result.Confirmed)
+ {
+ TimelineBson? newTimelineBson = result.Data as TimelineBson;
+ if (newTimelineBson != null)
+ {
+ int newTimelineID = await backendApiService.addTimeline(Username, newTimelineBson);
+ if (newTimelineID != -1)
+ {
+ try
+ {
+ ApplicationTimeline newTimeline = await backendApiService.getUserTimelineAsync(Username, newTimelineID);
+ timelines.Add(newTimeline);
+ HandleSortCriterionChange();
+ HandleDisplayChange();
+ StateHasChanged();
+ }
+ catch
+ {
+ ;
+ }
+ }
+
+ }
+
+ }
+ }
+
+ private async Task ShowAddAssessmentModal(ApplicationTimeline timeline)
+ {
+ var assessmentModal = ModalInputPopup.Show();
+ var result = await assessmentModal.Result;
+ int timelineID = timeline.timelineID;
+
+ if (result.Confirmed)
+ {
+ Assessment? newAssessment = result.Data as Assessment;
+ if (newAssessment != null)
+ {
+ timeline.assessments.Add(newAssessment);
+ timeline.assessments.OrderBy(a => a.date);
+ StateHasChanged();
+ var response = await backendApiService.addAssessment(newAssessment, Username, timelineID);
+ if (response)
+ {
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID);
+ int index = timelines.FindIndex(tl => tl.timelineID == timelineID);
+ if (index != -1)
+ {
+ newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails;
+ timelines[index] = newTimeline;
+ StateHasChanged();
+ }
+ }
+
+ }
+ }
+ }
+
+ private async Task ShowRemoveTimelineModal(int timelineID)
+ {
+ var removeTimelinePopup = ModalInputPopup.Show();
+ var result = await removeTimelinePopup.Result;
+
+ if (result.Confirmed)
+ {
+ timelines.RemoveAll(tl => tl.timelineID == timelineID);
+ var response = await backendApiService.removeTimeline(Username, timelineID);
+ if (!response)
+ {
+ timelines = await backendApiService.getUserTimelinesAsync(Username);
+ HandleSortCriterionChange();
+ StateHasChanged();
+ }
+ }
+ }
+
+ ///////////////////////////////////////
+ ////// Calendar view /////////////
+ ///////////////////////////////////////
+ public List>? GetSortedAssessments()
+ {
+ List<(int, Assessment)>? flattenedTimelines = timelines?
+ .SelectMany(timeline => timeline.assessments
+ .Select(a => (timeline.timelineID, a)))
+ .ToList();
+
+ var sortedAssessments = flattenedTimelines?.GroupBy(a => new DateTimeOffset(a.Item2.date.Date, TimeSpan.Zero)).OrderBy(ag => ag.Key).ToList();
+
+ return sortedAssessments;
+ }
+
+ public int GetPaneTimelineIndex(int timelineID)
+ {
+ int index = timelines.FindIndex(tl => tl.timelineID == timelineID);
+ return index;
+ }
+
+ public void HandleDisplayChange(){
+ if(displayMode == DisplayMode.Calendar_Display){
+ sortedAssessments = GetSortedAssessments();
+ }
+ StateHasChanged();
+ }
+ ///////////////////////////////////////
+ ////// Calendar view /////////////
+ ///////////////////////////////////////
+
+
+ ///////////////////////////////////////
+ ////// AI stuff /////////////
+ ///////////////////////////////////////
+
+
+ public bool AppendAssessment(ApplicationTimeline timeline, Assessment newAssessment)
+ {
+ //Console.WriteLine($"newTime::::::::: {newAssessment.date}");
+ if ((timeline.assessments.Count() == 0))
+ {
+ timeline.assessments.Add(newAssessment);
+ return true;
+ }
+
+ if (newAssessment.date == DateTimeOffset.MinValue)
+ {
+ timeline.assessments.Insert(0, newAssessment);
+ return true;
+ }
+
+ for(int i = 0; i < timeline.assessments.Count(); i++)
+ {
+ var currentAssessment = timeline.assessments[i];
+ if (newAssessment.date < currentAssessment.date){
+ timeline.assessments.Insert(i, newAssessment);
+ return true;
+ }
+ else if (newAssessment.date == currentAssessment.date)
+ {
+ return false;
+ }
+ else if (i == (timeline.assessments.Count() - 1)){
+ timeline.assessments.Add(newAssessment);
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+
+
+ public async Task AutofillAssessments(ApplicationTimeline timeline)
+ {
+
+ fillingAssessments = true;
+ fillingAssessmentsTimeline = timeline.timelineID;
+ HashSet allAssociatedEmailStrings = new();
+ List? fetchedEmails = new();
+
+ if (timeline.associatedEmailAddresses.Count() == 0)
+ {
+ selectedAssociatedEmails = new List();
+ StateHasChanged();
+ return;
+ }
+
+ foreach (var email in timeline.associatedEmailAddresses)
+ {
+ allAssociatedEmailStrings.Add(email);
+ }
+
+ fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings);
+ //selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList();
+ if (fetchedEmails != null)
+ {
+ selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList();
+ }
+
+ emailsShowing = false;
+ selectedEmail = null;
+
+ string prompt;
+ List predictedAssessments = new();
+ bool assessmentsUpdated = false;
+ autofillProgress = 0;
+ int emailCount = selectedAssociatedEmails.Count();
+ int counter = 0;
+
+ foreach(var email in selectedAssociatedEmails){
+ //var body = new MarkupString(email.Body.Content);
+ string plainTextBody = Regex.Replace(email.Body.Content, "<.*?>", "");
+ string dateOfEmail = Regex.Replace(email.CreatedDateTime.ToString(), "<.*?>", "");
+ //Console.WriteLine($"Body || {plainTextBody} || End of body");
+ if(plainTextBody.Count() < 10)
+ {
+ continue;
+ }
+
+ prompt = $@"Please analyze the given email body and determine if it is an invitation to a job application assessment/interview. Fill in the fields of a JSON object with the following structure: {{'IsAssessmentInvitation': 'bool', 'Type': 'AssessmentType', 'Status': 'AssessmentStatus', 'AssessmentDate': 'DateTime', 'CustomDescription': 'string'}}.
+
+ AssessmentType: Online_HR_Interview, In_Person_HR_Interview, Online_Technical_Interview, In_Person_Technical_Interview, Online_Assessment, Manager_Interview, Custom
+ AssessmentStatus: Scheduled, Passed, Pending, Failed
+ IsAssessmentInvitation: true, false
+ AssessmentDate: DateTime (with format 'yyyy-MM-dd HH:mm:ss')
+ CustomDescription: string
+
+ Email Body:
+ {plainTextBody}
+
+ Your response should be a string which can directly be deserialized when I pass it into JsonConvert.DeserializeObject() in C#.
+ If the IsAssessmentInvitation field is false, the rest of the fields shoudl be 'null'. Custom Description shouldn't be null only if the AssessmentType is 'Custom'.
+ If no year is given, base times off the email being sent on {dateOfEmail}.";
+
+ //Console.WriteLine("Start of Json||" + completion + "||End of Json");
+ try
+ {
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ int startIndex = completion.IndexOf('{');
+ int endIndex = completion.LastIndexOf('}');
+ string jsonString = completion.Substring(startIndex, endIndex - startIndex + 1);
+ AssessmentAIResponse? AIResponse = JsonConvert.DeserializeObject(jsonString);
+ if (AIResponse != null)
+ {
+ if (AIResponse.IsAssessmentInvitation)
+ {
+ DateTimeOffset parsedDateTime;
+ DateTimeOffset newDate = DateTimeOffset.TryParse(AIResponse.AssessmentDate, out parsedDateTime) ? parsedDateTime : DateTimeOffset.MinValue;
+ var newAssessment = new Assessment {
+ status = newDate <= DateTimeOffset.Now ? AssessmentStatus.Pending : AssessmentStatus.Scheduled,
+ type = AIResponse.Type.HasValue ? AIResponse.Type.Value : AssessmentType.Online_Technical_Interview,
+ date = newDate,
+ todoScheduled = false,
+ taskId = null,
+ customDescription = AIResponse.CustomDescription
+ };
+ bool newAssessmentsUpdated = AppendAssessment(timeline, newAssessment);
+ if (newAssessmentsUpdated)
+ {
+ StateHasChanged();
+ assessmentsUpdated = true;
+ }
+ }
+
+ }
+ }
+ catch (Exception ex)
+ {
+ ;
+ }
+ counter += 100;
+ autofillProgress = (counter/emailCount);
+ Console.WriteLine(autofillProgress);
+ StateHasChanged();
+ }
+
+ if (assessmentsUpdated)
+ {
+ int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID);
+ var response = await backendApiService.updateAssessments(timeline.assessments, Username, timeline.timelineID);
+ if (response)
+ {
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID);
+ if (index != -1)
+ {
+ newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails;
+ timelines[index] = newTimeline;
+ StateHasChanged();
+ }
+ }
+
+ }
+ fillingAssessmentsTimeline = -1;
+ autofillProgress = 0;
+ fillingAssessments = false;
+ }
+
+ public async Task AutofillAssessmentsV2(ApplicationTimeline timeline)
+ {
+
+ fillingAssessments = true;
+ fillingAssessmentsTimeline = timeline.timelineID;
+ HashSet allAssociatedEmailStrings = new();
+ List? fetchedEmails = new();
+
+ if (timeline.associatedEmailAddresses.Count() == 0)
+ {
+ selectedAssociatedEmails = new List();
+ StateHasChanged();
+ return;
+ }
+
+ foreach (var email in timeline.associatedEmailAddresses)
+ {
+ allAssociatedEmailStrings.Add(email);
+ }
+ fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings);
+ //selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList();
+ if (fetchedEmails != null)
+ {
+ selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList();
+ }
+
+ emailsShowing = false;
+ selectedEmail = null;
+
+ string prompt;
+ List predictedAssessments = new();
+
+ foreach(var email in selectedAssociatedEmails){
+ //var body = new MarkupString(email.Body.Content);
+ string plainTextBody = Regex.Replace(email.Body.Content, "<.*?>", "");
+ string dateOfEmail = Regex.Replace(email.CreatedDateTime.ToString(), "<.*?>", "");
+ Console.WriteLine($"Body || {plainTextBody} || End of body");
+ if(plainTextBody.Count() < 10)
+ {
+ continue;
+ }
+ @* prompt = $"Based on the email body I provide further on, fill the following json file based on if you think it is an invitation to an assessment: {{IsAssessmentInvitation: 'bool', type:'AssessmentType', status:'AssessmentStatus', AssessmentDate:'DateTime'}}. This is the email body: {plainTextBody}. Use these definitions for AssessmentType and AssessmentStatus: "+
+ @" public enum AssessmentType
+ {{
+ Online_HR_Interview,
+ In_Person_HR_Interview,
+ Online_Technical_Interview,
+ In_Person_Technical_Interview,
+ Online_Assessment,
+ Manager_Interview,
+ Custom
+ }}
+ public enum AssessmentStatus
+ {{
+ Scheduled,
+ Passed,
+ Pending,
+ Failed
+ }}. Only fill in 'true' for IsAssessmentInvitation if you belive the email is an assessment invitation and be strickt about that.
+ The other Json fields can be null if it is not. Return A string in Json format so I can directly desirealize it into Json In my C# code by JsonConvert.DeserializeObject(response)" ; *@
+
+ prompt = $@"Please analyze the given email body and determine if it is an invitation to a job application assessment/interview. Fill in the fields of a JSON object with the following structure: {{'IsAssessmentInvitation': 'bool', 'Type': 'AssessmentType', 'Status': 'AssessmentStatus', 'AssessmentDate': 'DateTime', 'CustomDescription': 'string'}}.
+
+ AssessmentType: Online_HR_Interview, In_Person_HR_Interview, Online_Technical_Interview, In_Person_Technical_Interview, Online_Assessment, Manager_Interview, Custom
+ AssessmentStatus: Scheduled, Passed, Pending, Failed
+ IsAssessmentInvitation: true, false
+ AssessmentDate: DateTime (with format 'yyyy-MM-dd HH:mm:ss')
+ CustomDescription: string
+
+ Email Body:
+ {plainTextBody}
+
+ Your response should be a string which can directly be deserialized when I pass it into JsonConvert.DeserializeObject() in C#.
+ If the IsAssessmentInvitation field is false, the rest of the fields should be 'null'. Custom Description shouldn't be null only if the AssessmentType is 'Custom'.
+ If no year is given, base times off the email being sent on {dateOfEmail}.";
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+
+ try
+ {
+ int startIndex = completion.IndexOf('{');
+ int endIndex = completion.LastIndexOf('}');
+ string jsonString = completion.Substring(startIndex, endIndex - startIndex + 1);
+ AssessmentAIResponse? response = JsonConvert.DeserializeObject(jsonString);
+ if (response != null){
+ predictedAssessments.Add(response);
+ }
+ }
+ catch (Exception ex)
+ {
+ ;
+ }
+ }
+ if (predictedAssessments.Count() != 0)
+ {
+ List newAssessments;
+ newAssessments = predictedAssessments
+ .Where(pa => pa.IsAssessmentInvitation)
+ .Select(pa => {
+ DateTimeOffset parsedDateTime;
+ DateTimeOffset newDate = DateTimeOffset.TryParse(pa.AssessmentDate, out parsedDateTime) ? parsedDateTime : DateTimeOffset.MinValue;
+ return new Assessment {
+ status = newDate <= DateTimeOffset.Now ? AssessmentStatus.Pending : AssessmentStatus.Scheduled,
+ type = pa.Type.HasValue ? pa.Type.Value : AssessmentType.Online_Technical_Interview,
+ date = newDate,
+ todoScheduled = false,
+ taskId = null,
+ customDescription = pa.CustomDescription
+ };
+ })
+ .GroupBy(pa => pa.date)
+ .SelectMany(g => g.Key == DateTimeOffset.MinValue ? g : g.Take(1))
+ .ToList();
+
+ if (newAssessments.Count() != 0)
+ {
+ timeline.assessments.AddRange(newAssessments);
+ timeline.assessments.Sort((a1, a2) => a1.date.CompareTo(a2.date));
+ fillingAssessmentsTimeline = -1;
+ fillingAssessments = false;
+ StateHasChanged();
+
+ int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID);
+ var response = await backendApiService.addAssessments(newAssessments, Username, timeline.timelineID);
+ if (response)
+ {
+ var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID);
+ if (index != -1)
+ {
+ newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails;
+ timelines[index] = newTimeline;
+ StateHasChanged();
+ }
+ }
+
+ }
+
+ }
+ fillingAssessmentsTimeline = -1;
+ fillingAssessments = false;
+
+ }
+
+
+ ///////////////////////////////////////
+ ///////// AI stuff ///////////
+ ///////////////////////////////////////
+
+ private async Task?> GetEmailsFromAddresses(HashSet emailAddresses)
+ {
+ var emailFilters = emailAddresses.Select(email => $"from/emailAddress/address eq '{email}'");
+ var filter = string.Join(" or ", emailFilters);
+
+ var result = await graphClient.Me.Messages.GetAsync((requestConfiguration) =>
+ {
+ requestConfiguration.QueryParameters.Filter = filter;
+ requestConfiguration.QueryParameters.Top = 999;
+ });
+
+ return result?.Value;
+ }
+
+
+ private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId)
+ {
+ // Time zone returned by Graph could be Windows or IANA style
+ // TimeZoneConverter can take either
+ TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId);
+
+ // Assumes Sunday as first day of week
+ int diff = System.DayOfWeek.Sunday - today.DayOfWeek;
+
+ // create date as unspecified kind
+ var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified);
+
+ // convert to UTC
+ return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone);
+ }
+
+ private string FormatIso8601DateTime(string? iso8601DateTime)
+ {
+ if (string.IsNullOrEmpty(iso8601DateTime))
+ {
+ return string.Empty;
+ }
+
+ // Load into a DateTime
+ var dateTime = DateTime.Parse(iso8601DateTime);
+
+ if (!string.IsNullOrWhiteSpace(dateTimeFormat))
+ {
+ // Format it using the user's settings
+ return dateTime.ToString(dateTimeFormat);
+ }
+
+ // Fallback to return original value
+ return iso8601DateTime;
+ }
+
+
+ }
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Authentication.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Authentication.razor
new file mode 100644
index 000000000..5092e0ff2
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Authentication.razor
@@ -0,0 +1,37 @@
+@page "/authentication/{action}"
+@using Microsoft.AspNetCore.Components;
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication;
+
+@using System.Threading.Tasks;
+
+@using Microsoft.JSInterop
+
+@inject IJSRuntime JSRuntime
+
+
+
+
+@code {
+ [Parameter] public string? Action { get; set; }
+
+ private static RenderFragment LogInFailedFragment(string message)
+ {
+ return builder =>
+ {
+ builder.OpenElement(0, "div");
+ builder.AddAttribute(1, "class", "alert alert-danger");
+ builder.AddAttribute(2, "role", "alert");
+ builder.OpenElement(3, "p");
+ builder.AddContent(4, "There was an error trying to log you in.");
+ builder.CloseElement();
+ if (!string.IsNullOrEmpty(message))
+ {
+ builder.OpenElement(5, "p");
+ builder.AddContent(6, $"Error: {message}");
+ builder.CloseElement();
+ }
+ builder.CloseElement();
+ };
+ }
+
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Calendar.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Calendar.razor
new file mode 100644
index 000000000..2e09a4330
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Calendar.razor
@@ -0,0 +1,905 @@
+@page "/calendar"
+@using System.Security.Authentication
+@using TimeZoneConverter
+@using System.IO;
+@using Azure
+@using Azure.AI.OpenAI
+@using System.Text
+@using Microsoft.Graph.Beta
+
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject GraphSample.AI.OpenAIService OpenAIService
+
+@inject GraphSampleBeta.Graph.GraphClientFactoryBeta clientFactory
+
+
+
+
+
+
+
+ New Event
+ @* Get Free Schedule *@
+
+
+
+
+
@MonthToText() @year
+
+ Previous
+ Today
+ Next
+
+
+
+
+ Sun
+ Mon
+ Tue
+ Wed
+ Thu
+ Fri
+ Sat
+
+
+
+ @for (int r = 0; r < rowsCount; r++)
+ {
+
+ @foreach (var item in days.Skip(r * 7).Take(7))
+ {
+ if (item.Date == DateTime.Now.Date)
+ {
+ getEventsOfSelectedDay(item)">
+ @DayTemplate(item)
+
+ }
+ else
+ {
+ if (selectedDay.Date.ToString()[0..10] == "01/01/0001")
+ {
+ getEventsOfSelectedDay(item)">@DayTemplate(item)
+ }
+ else
+ {
+ if (item.Date.ToString()[0..10] == selectedDay.Date.ToString()[0..10])
+ {
+ getEventsOfSelectedDay(item)">
+ @DayTemplate(item)
+
+ }
+ else
+ {
+ getEventsOfSelectedDay(item)">@DayTemplate(item)
+ }
+ }
+ }
+ }
+
+ }
+
+
+
+
+
+ @if (selectedDay.Date == DateTime.Now.Date)
+ {
+
Events for today
+ }
+ else if (selectedDay.Date.ToString()[0..10] == "01/01/0001")
+ {
+
+
Events
+ }
+ else
+ {
+
Events for @selectedDay.Date.ToString()[0..10]
+ }
+
+
+
+
+ Organizer
+ Subject
+ Start Day
+ @* End Day *@
+ Start Time
+ @* End Time *@
+
+
+
+ @if (getEventsOfSelectedDay(selectedDay).Count == 0)
+ {
+
+ No events for this day
+
+ }
+ else
+ {
+ @foreach (var e in getEventsOfSelectedDay(selectedDay))
+ {
+ if (!(bool)e.IsOnlineMeeting)
+ {
+
+ @e?.Organizer?.EmailAddress?.Name
+ @e?.Subject
+ @FormatIso8601DateTime(e?.Start?.DateTime).ToString()[0..10]
+ @FormatIso8601DateTime(e?.Start?.DateTime).ToString()[11..16]
+
+ deleteItem((getEventsOfSelectedDay(selectedDay)), e)">
+
+ }
+
+ else
+ {
+
+ Didn't attend? Summarize this call
+
+ GetContent(e.OnlineMeeting.JoinUrl)" id="default3">
+ @e?.Organizer?.EmailAddress?.Name
+ @e?.Subject
+ @FormatIso8601DateTime(e?.Start?.DateTime).ToString()[0..10]
+ @FormatIso8601DateTime(e?.Start?.DateTime).ToString()[11..16]
+
+ deleteItem((getEventsOfSelectedDay(selectedDay)), e)">
+
+
+ }
+
+ }
+ }
+
+
+
+
+
+
+
+
+ @if (string.IsNullOrEmpty(summary))
+ {
+
+ }
+
+ else
+ {
+ @summary
+ }
+
+
+
+
+
+
+
+
+
+@code {
+
+ @* --------------------------------------defintiions and calendar ------------------------ *@
+ public class CalendarDay
+ {
+ public int DayNumber { get; set; }
+ public DateTime Date { get; set; }
+ public bool IsEmpty { get; set; }
+ public List dayEvents { get; set; } = new List();
+ }
+
+ private List days = new List();
+ private int year = DateTime.Now.Year;
+ private int month = DateTime.Now.Month;
+ private int rowsCount = 0;
+
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+ private GraphServiceClient? graphClient;
+ public IList events = new List();
+ private string? dateTimeFormat;
+ public CalendarDay selectedDay = new CalendarDay();
+
+ public string subject { get; set; } = "";
+ private string attendees { get; set; } = string.Empty;
+ private DateTime start = new DateTime(DateTime.Today.Ticks);
+ private DateTime end = new DateTime(DateTime.Today.Ticks);
+ private string body = string.Empty;
+ private string userTimeZone = string.Empty;
+ protected string summary = "";
+ private FluentDialog? MyFluentDialog;
+
+ @* ---------------------------------initilaisation ------------------------------------------- *@
+ protected override async Task OnInitializedAsync()
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+ var user = (await authenticationStateTask).User;
+ userTimeZone = (await authenticationStateTask).User.GetUserGraphTimeZone() ?? "UTC";
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}";
+ var eventPage = await graphClient.Me
+ .Calendar.Events
+ .GetAsync(config =>
+ {
+ config.Headers.Add("Prefer", $"outlook.timezone=\"{userTimeZone}\"");
+ });
+ @* var eventPage = await graphClient.Me.Calendar.Events.GetAsync(); *@
+ events = eventPage?.Value ?? new List();
+
+ foreach (var e in events)
+ {
+ Console.WriteLine(e.ToString());
+ }
+
+ await base.OnInitializedAsync();
+ await LoadCalendar();
+ StateHasChanged();
+ }
+
+ private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId)
+ {
+ TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId);
+ int diff = System.DayOfWeek.Sunday - today.DayOfWeek;
+ var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified);
+ return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone);
+ }
+
+ private string FormatIso8601DateTime(string? iso8601DateTime)
+ {
+ if (string.IsNullOrEmpty(iso8601DateTime))
+ {
+ return string.Empty;
+ }
+ // Load into a DateTime
+ var dateTime = DateTime.Parse(iso8601DateTime);
+ if (!string.IsNullOrWhiteSpace(dateTimeFormat))
+ {
+ // Format it using the user's settings
+ return dateTime.ToString(dateTimeFormat);
+ }
+
+ // Fallback to return original value
+ return iso8601DateTime;
+ }
+
+
+
+ @* -----------------------------building and making calendar ----------------------------------------- *@
+
+ [Parameter]
+ public RenderFragment DayTemplate { get; set; } = DefaultDayTemplate;
+ private static RenderFragment DefaultDayTemplate = (day) => builder =>
+ {
+ if (day.DayNumber != 0)
+ {
+ builder.OpenElement(1, "div"); // Create a container div for the day
+
+ builder.OpenElement(2, "div"); // Create a div for the day number
+ builder.AddContent(3, day.DayNumber);
+ builder.CloseElement();
+
+ // Display the events for the day
+ if (day.dayEvents != null)
+ {
+ if (day.dayEvents.Count > 0)
+ {
+ builder.OpenElement(4, "div"); // Create a div for ellipses
+ builder.AddContent(5, "...");
+ builder.CloseElement();
+ }
+ }
+ builder.CloseElement(); // Close the container div
+ }
+ };
+ public async Task LoadCalendar()
+ {
+ List GenerateEmptyDays(int numberOfEmptyDays)
+ {
+ return Enumerable.Range(0, numberOfEmptyDays)
+ .Select(_ => new CalendarDay { DayNumber = 0, IsEmpty = true })
+ .ToList();
+ }
+
+ List GenerateMonthDays()
+ {
+ int numberOfDaysInMonth = DateTime.DaysInMonth(year, month);
+
+ return Enumerable.Range(1, numberOfDaysInMonth)
+ .Select(day => new CalendarDay
+ {
+ DayNumber = day,
+ IsEmpty = false,
+ Date = new DateTime(year, month, day),
+ dayEvents = new List()
+ })
+ .ToList();
+ }
+
+ int CalculateNumberOfEmptyDays()
+ {
+ var firstDayDate = new DateTime(year, month, 1);
+ int weekDayNumber = (int)firstDayDate.DayOfWeek;
+ return weekDayNumber == 7 ? 0 : weekDayNumber;
+ }
+
+ int CalculateRowsCount(int totalDays)
+ {
+ return totalDays % 7 == 0
+ ? totalDays / 7
+ : Convert.ToInt32(totalDays / 7) + 1;
+ }
+
+ days = new List();
+
+ int numberOfEmptyDays = CalculateNumberOfEmptyDays();
+ days.AddRange(GenerateEmptyDays(numberOfEmptyDays));
+
+ days.AddRange(GenerateMonthDays());
+
+ rowsCount = CalculateRowsCount(days.Count);
+
+ foreach (var day in days)
+ {
+ day.dayEvents = getEventsofToday(day);
+ }
+ }
+ public string MonthToText()
+ {
+ switch (month)
+ {
+ case 1: return "January";
+ case 2: return "February";
+ case 3: return "March";
+ case 4: return "April";
+ case 5: return "May";
+ case 6: return "June";
+ case 7: return "July";
+ case 8: return "August";
+ case 9: return "September";
+ case 10: return "October";
+ case 11: return "November";
+ case 12: return "December";
+ default: return "";
+ }
+ }
+ public async Task NextMonth()
+ {
+ (int updatedMonth, int updatedYear) = month == 12
+ ? (1, year + 1)
+ : (month + 1, year);
+
+ month = updatedMonth;
+ year = updatedYear;
+
+ MonthToText();
+ await LoadCalendar();
+ StateHasChanged();
+ }
+
+ public async Task PreviousMonth()
+ {
+ (int updatedMonth, int updatedYear) = month == 1
+ ? (12, year - 1)
+ : (month - 1, year);
+
+ month = updatedMonth;
+ year = updatedYear;
+
+ await LoadCalendar();
+ StateHasChanged();
+ }
+ public async Task Today()
+ {
+ selectedDay.Date = DateTime.Now.Date;
+ selectedDay.dayEvents = getEventsofToday(selectedDay);
+ month = DateTime.Now.Month;
+ year = DateTime.Now.Year;
+ await LoadCalendar();
+ StateHasChanged();
+ }
+
+ @* --------------------------------------Events ---------------------------------------- *@
+ public async Task> deleteItem(List e, Microsoft.Graph.Beta.Models.Event item)
+ {
+ e.Remove(item);
+ await graphClient.Me.Events[item.Id].DeleteAsync();
+ StateHasChanged();
+ return e;
+ }
+
+ public List getEventsOfSelectedDay(CalendarDay day)
+ {
+ selectedDay = day;
+ return selectedDay.dayEvents;
+ }
+
+ public List getEventsofToday(CalendarDay day)
+ {
+ List eventsOfDay = new List();
+ foreach (var e in events)
+ {
+ if (((e.Start.DateTime).ToString()[0..10]).Split("-")[0] == ((day.Date).ToString()[0..10]).Split("/")[2] &&
+ ((e.Start.DateTime).ToString()[0..10]).Split("-")[1] == ((day.Date).ToString()[0..10]).Split("/")[1] &&
+ ((e.Start.DateTime).ToString()[0..10]).Split("-")[2] == ((day.Date).ToString()[0..10]).Split("/")[0])
+ {
+ eventsOfDay.Add(e);
+ }
+ }
+ return eventsOfDay;
+ }
+
+
+ @* ----------------------------------------Adding Events --------------------------- *@
+ public async Task AddEvent()
+ {
+ var newEvent = new Microsoft.Graph.Beta.Models.Event
+ {
+ Subject = subject,
+ Body = new Microsoft.Graph.Beta.Models.ItemBody
+ {
+ ContentType = Microsoft.Graph.Beta.Models.BodyType.Text,
+ Content = body
+ },
+ Start = new Microsoft.Graph.Beta.Models.DateTimeTimeZone
+ {
+ DateTime = start.ToString("o"),
+ TimeZone = userTimeZone
+ },
+ End = new Microsoft.Graph.Beta.Models.DateTimeTimeZone
+ {
+ DateTime = end.ToString("o"),
+ TimeZone = userTimeZone
+ },
+ Attendees = new List()
+ };
+
+ var attendeesArray = attendees.Split(';');
+ foreach (var attendee in attendeesArray)
+ {
+ newEvent.Attendees.Add(new Microsoft.Graph.Beta.Models.Attendee
+ {
+ EmailAddress = new Microsoft.Graph.Beta.Models.EmailAddress
+ {
+ Address = attendee.Trim()
+ },
+ Type = Microsoft.Graph.Beta.Models.AttendeeType.Required
+ });
+ }
+
+ try
+ {
+ await graphClient.Me
+ .Events
+ .PostAsync(newEvent);
+ events = await getEvents();
+ Console.WriteLine(userTimeZone.ToString());
+ subject = "";
+ attendees = "";
+ start = new DateTime(DateTime.Today.Ticks);
+ end = new DateTime(DateTime.Today.Ticks);
+ body = "";
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine(ex.Message);
+ }
+ }
+
+ public async Task> getEvents()
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var eventPage = await graphClient.Me
+ .Calendar.Events
+ .GetAsync(config =>
+ {
+ config.Headers.Add("Prefer", $"outlook.timezone=\"{userTimeZone}\"");
+ });
+ events = eventPage?.Value ?? new List();
+ await LoadCalendar();
+ return events.ToList();
+ }
+
+ @* get free schedule *@
+
+ public async Task GetFreeSchedule()
+ {
+ // Code snippets are only available for the latest version. Current version is 5.x
+
+ var graphClient = clientFactory.GetAuthenticatedClient();
+
+ @* turn this into a string list seperated by commas *@
+ var attendeesArray = attendees.Split(';');
+ var schedulesTemp = new List();
+ foreach (string attendee in attendeesArray)
+ {
+ schedulesTemp.Add(attendee.Trim());
+ };
+
+
+
+
+ var requestBody = new Microsoft.Graph.Beta.Me.Calendar.GetSchedule.GetSchedulePostRequestBody
+ {
+
+ Schedules = schedulesTemp,
+
+
+ StartTime = new Microsoft.Graph.Beta.Models.DateTimeTimeZone
+ {
+ DateTime = start.ToString("o"),
+ TimeZone = userTimeZone
+ },
+ EndTime = new Microsoft.Graph.Beta.Models.DateTimeTimeZone
+ {
+ DateTime = end.ToString("o"),
+ TimeZone = userTimeZone
+ },
+ AvailabilityViewInterval = 60,
+ };
+ var result = await graphClient.Me.Calendar.GetSchedule.PostAsync(requestBody, (requestConfiguration) =>
+ {
+ requestConfiguration.Headers.Add("Prefer", "outlook.timezone=\"Pacific Standard Time\"");
+ });
+ }
+
+
+
+ @* ---------------------------------------- AI Transcript Function --------------------------- *@
+
+
+ protected override void OnAfterRender(bool firstRender)
+ {
+ if (firstRender)
+ MyFluentDialog!.Hide();
+ }
+
+
+ private void OnOpen()
+ {
+ MyFluentDialog!.Show();
+ }
+
+ private void OnDismiss(DialogEventArgs args)
+ {
+ if (args is not null && args.Reason is not null && args.Reason == "dismiss")
+ {
+ MyFluentDialog!.Hide();
+ }
+ }
+
+
+ protected async void GetContent(string meetingLink)
+ {
+ OnOpen();
+ var originalString = "JoinWebUrl eq '1234'";
+ string modifiedLink = originalString.Replace("'1234'", $"'{meetingLink}'");
+
+ Console.WriteLine(modifiedLink);
+
+ var me = await graphClient.Me.GetAsync();
+
+ var meetingInfo = await graphClient.Me.OnlineMeetings.GetAsync((requestConfiguration) =>
+ {
+ requestConfiguration.QueryParameters.Filter = modifiedLink;
+ });
+
+ var transcripts2 = await graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts.GetAsync();
+
+
+ var requestInformation = graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts[transcripts2.Value[0].Id].Content.ToGetRequestInformation();
+ requestInformation.UrlTemplate += "{?format}"; // Add the format query parameter to the template and query parameter.
+ requestInformation.QueryParameters.Add("format", "text/vtt");
+ var content2 = await graphClient.RequestAdapter.SendPrimitiveAsync(requestInformation);
+
+ var string2 = ConvertWebVttStreamToString(content2);
+
+ await SummarizeText(string2);
+ StateHasChanged();
+ //Console.WriteLine(summary);
+ }
+
+
+ protected string ConvertWebVttStreamToString(Stream? stream)
+ {
+ using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
+ {
+ return reader.ReadToEnd();
+ }
+ }
+
+ // Event handler for the "Summarize" button click
+ protected async Task SummarizeText(string content)
+ {
+
+ // Perform summarization until the overall summary is less than 3000 characters
+ var summaries = new List();
+ var overallSummary = "";
+
+ // Split the content into smaller chunks
+ var chunkSize = 750; // Adjust this value as per your model's character limit
+ var chunks = SplitContentIntoChunks(content, chunkSize);
+
+ // Perform summarization for each chunk
+ foreach (var chunk in chunks)
+ {
+ string prompt = $"Provide an executive level summary for the following meeting transcript in detail, assume the person was not able to attend this meeting. Ignore any timestamps and tags:\n\n{chunk}\n";
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+
+ summaries.Add(completion);
+ string finish = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish2);
+ }
+
+ // Combine the individual summaries into an overall summary
+ overallSummary = string.Join(" ", summaries);
+
+ //Break the loop if the overall summary exceeds 2500 characters
+ if (overallSummary.Length >= 5000)
+ {
+ summaries.Clear();
+
+ string prompt = $"This summary is slightly too long, please rewrite without losing any detail but in a more concise way:\n\n{overallSummary}\n";
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+
+ summaries.Add(completion);
+ string finish = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish2);
+ }
+
+ //Break the loop if the overall summary exceeds 2500 characters
+ else if (overallSummary.Length <= 500)
+ {
+ summaries.Clear();
+
+ string prompt = $"This summary is slightly too short, please rewrite without losing any detail but in a more easy to understand way, including any extra details that would help:\n\n{overallSummary}\n";
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+
+ summaries.Add(completion);
+ string finish = $"Keep summarising:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish2);
+ }
+
+ overallSummary = string.Join(" ", summaries);
+ summaries.Clear();
+ summary = overallSummary;
+ Console.WriteLine("Generated AI summary");
+
+ }
+
+ // Helper method to split the content into smaller chunks
+ private IEnumerable SplitContentIntoChunks(string content, int chunkSize)
+ {
+ var sentences = content.Split('.', '!', '?');
+ var currentChunk = new StringBuilder();
+
+ foreach (var sentence in sentences)
+ {
+ if (currentChunk.Length + sentence.Length + 1 <= chunkSize)
+ {
+ currentChunk.Append(sentence).Append('.');
+ }
+ else
+ {
+ yield return currentChunk.ToString();
+ currentChunk.Clear().Append(sentence).Append('.');
+ }
+ }
+
+ if (currentChunk.Length > 0)
+ {
+ yield return currentChunk.ToString();
+ }
+ }
+
+
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Chat.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Chat.razor
new file mode 100644
index 000000000..8e6a6cd9a
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Chat.razor
@@ -0,0 +1,482 @@
+@page "/chat"
+@using System.Security.Authentication
+@using System.Text
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@using Microsoft.Extensions.Logging
+@using GrapeCity.Documents.Pdf
+@using Azure
+@using Azure.AI.OpenAI
+@using static System.Environment
+@using Microsoft.Fast.Components.FluentUI
+@using Microsoft.AspNetCore.Components.Web
+@using Microsoft.AspNetCore.Components
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+@using Newtonsoft.Json;
+
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @foreach (var key in messages)
+ {
+
+
+ @key
+
+
+ @if (mesReply[key].Length < 1)
+ {
+
+
+ Typing....
+
+ }
+ else
+ {
+
+ @mesReply[key]
+
+
+ }
+
+ }
+
+
+
+ Create To Do
+ Today's Weather
+ @* Schedule Meeting *@
+
+
+
+
+ Enter
+
+
+
+
+
+
+
+
+ @* use a chat icon here *@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code {
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+
+ private GraphServiceClient? graphClient;
+ protected string value3 = string.Empty;
+ public List messages = new List();
+ private FluentDialog? MyFluentDialog;
+ public bool Modal = true;
+ Dictionary mesReply = new Dictionary();
+ protected string reply = string.Empty;
+ private OpenAIService? openAIService;
+ public bool creating = false;
+ private string[]? todolist;
+ private string? todoStart;
+ private string todoTasks;
+
+ Dictionary TaskDict = new Dictionary();
+
+ public bool Todo = false;
+
+ public bool Weather = false;
+
+
+ private string selectedList = "Tasks";
+
+ private IList toDos = new List();
+
+ private string weatherData;
+
+ public string weatherReply;
+
+
+
+ protected override void OnAfterRender(bool firstRender)
+ {
+ if (firstRender)
+ MyFluentDialog!.Hide();
+ }
+
+
+ private void OnOpen()
+ {
+ MyFluentDialog!.Show();
+
+ }
+
+ private void OnDismiss(DialogEventArgs args)
+ {
+ if (args is not null && args.Reason is not null && args.Reason == "dismiss")
+ {
+ MyFluentDialog!.Hide();
+ }
+ }
+ private void OnCloseModalRefButtonClick() => MyFluentDialog!.Hide();
+
+ protected override async Task OnInitializedAsync()
+ {
+
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ var user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ openAIService = new OpenAIService(); // Create an instance of the 'OpenAIService'
+
+ var getLists = await graphClient.Me.Todo.Lists.GetAsync();
+ toDos = getLists?.Value ?? new List();
+
+ foreach(var item in toDos)
+ {
+ if (item == null)
+ {
+ throw new ArgumentNullException(nameof(item));
+ }
+ if (item.DisplayName == "Tasks"){
+ selectedList = item.Id;
+ }
+ }
+ }
+
+ private void HandleInput(ChangeEventArgs e)
+ {
+ value3 = e.Value.ToString();
+ Console.WriteLine("hi enter");
+ }
+
+ private async Task HandleKeyPress(KeyboardEventArgs e)
+ {
+ if (e.Key == "Enter")
+ {
+ // call the async function from here;
+ await AddMessage();
+ Console.WriteLine("Entered: " + value3);
+ }
+ }
+
+
+ public async Task AddMessage()
+ {
+ messages.Add(value3);
+ if (!mesReply.ContainsKey(value3))
+ {
+ mesReply.Add(value3, "");
+ }
+
+ string temp = value3;
+ value3 = "";
+ StateHasChanged();
+ //reply = "Hello World";
+ //Console.Write("Entered: " + temp);
+ if (Todo){
+ Console.Write("Entered: " + temp);
+ await ConvertTasks(temp);
+ reply = "Your To Do List has been updated";
+ Todo = false;
+ }
+ /* else if (Weather){
+ await GetWeather();
+ reply = weatherReply;
+ Weather = false;
+ } */
+ else{
+ await AIAnswer(temp);
+ }
+ mesReply[temp] = reply;
+ StateHasChanged();
+
+ }
+
+ public async Task TodoPressed()
+ {
+ messages.Add("Create To Do List");
+ StateHasChanged();
+ mesReply["Create To Do List"] = "Please enter your plans for the day";
+ Todo = true;
+ StateHasChanged();
+ }
+
+ public async Task WeatherPressed()
+ {
+ messages.Add("What is today's weather?");
+ mesReply["What is today's weather?"] = "";
+ StateHasChanged();
+ await GetWeather();
+ mesReply["What is today's weather?"] = weatherReply;
+ StateHasChanged();
+ }
+
+ private async Task ConvertTasks(string textValue)
+ {
+ creating = true;
+ Console.WriteLine("Entered: " + textValue);
+ textValue = textValue + " |||";
+ //string completion = "+10:00 - 11:00> Reply to emails +11:00 - 12:00> Schedule a meeting +12:00 - 12:30> Grab morning coffee +12:30 - 13:30> Meet colleague at cafe for lunch +19:00 - 20:00> Meet friend for dinner"; *@
+ string prompt = $"Can you create a to-do list including a suitable start time in the form of hh:mm for today according to my plan/plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise, the plans list ends with '|||' : \n {textValue}";
+ Console.Write($"Input: {prompt}\n");
+
+ var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ //string completion = "+06:00 > Grab morning coffee +08:00 > Reply to emails +12:00 > Meet colleague at cafe for lunch +18:00 > Meet friend for dinner +20:00 > Schedule meeting with someone in Toronto";
+ Console.WriteLine(completion);
+ todolist = completion.Split("\n");
+ //todolist = completion.Split("+");
+
+ foreach (string todo in todolist)
+ {
+ if (todo.Contains("+") && todo.Contains(">"))
+ {
+ todoStart = todo.Split(">")[0].Split("+")[1];
+ //todoStart = todo.Split(">")[0];
+ todoTasks = todo.Split(">")[1];
+
+ TaskDict[todoStart] = todoTasks;
+ await SendToDo(todoTasks, todoStart);
+ }
+ }
+ creating = false;
+
+ }
+
+ private string FarenheitToCelsius(string temp)
+ {
+ double tempF = double.Parse(temp);
+
+ double tempC = (tempF - 32) * 5 / 9;
+
+ tempC = Math.Round(tempC);
+ return tempC.ToString();
+ }
+
+ private async Task GetWeather(){
+ HttpClient client = new HttpClient();
+
+ var ip = await client.GetStringAsync("https://api.ipify.org");
+
+ string myIP = ip.ToString();
+
+ var loc = await client.GetStringAsync("https://api.ipgeolocation.io/ipgeo?apiKey=128faba391e648aba00fcf3acda914e3&ip="+ myIP);
+
+ dynamic locationUser = JsonConvert.DeserializeObject(loc);
+
+ var response = await client.GetAsync("https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/"+ locationUser.city +"?key=SWMLUUAV7UHPW5NZ6ZQQNK2G6");
+
+ response.EnsureSuccessStatusCode(); // Throw an exception if error
+
+ weatherData = await response.Content.ReadAsStringAsync();
+
+ dynamic weather = JsonConvert.DeserializeObject(weatherData);
+
+
+ string weather_date = weather.days[0].datetime;
+ string weather_desc = weather.days[0].description;
+ string weather_tmaxF = weather.days[0].tempmax;
+ string weather_tmaxC = FarenheitToCelsius(weather_tmaxF);
+ string weather_tminF = weather.days[0].tempmin;
+ string weather_tminC = FarenheitToCelsius(weather_tminF);
+
+
+ weatherReply = "The date is " + weather_date + " \nGeneral conditions: " + weather_desc + "\nThe high temperature will be " + weather_tmaxC + " ºC\nThe low temperature will be: " + weather_tminC + " ºC" ;
+
+
+ //weatherReply = "General conditions: " + weather_desc + "\nThe high temperature will be " + weather_tmax + "\nThe low temperature will be: " + weather_tmin ;
+ }
+
+
+ private async Task SendToDo(string todoTasks, string todoStart){
+ Console.WriteLine(todoStart);
+ Console.WriteLine("Sending");
+ DateTime now = DateTime.UtcNow.Date; // Get the current date in UTC
+
+ // Split the time string into hours and minutes
+ string[] timeParts = todoStart.Split(':');
+ int hours = int.Parse(timeParts[0]);
+ int minutes = int.Parse(timeParts[1]);
+
+ // Create a new DateTime object with the current date and the specified time
+ DateTime startTime = now.AddHours(hours).AddMinutes(minutes);
+
+ DateTimeTimeZone dateTimeTimeZone = new DateTimeTimeZone
+ {
+ DateTime = startTime.ToString("yyyy-MM-ddTHH:mm:ss"),
+ TimeZone = TimeZoneInfo.Local.Id
+ };
+
+ var requestBody = new TodoTask
+ {
+ Title = todoTasks,
+ ReminderDateTime = dateTimeTimeZone,
+ };
+
+ var todoTask = await graphClient.Me.Todo.Lists[selectedList].Tasks
+ .PostAsync(requestBody);
+ Console.WriteLine("Sent");
+
+ }
+
+
+
+ private async Task AIAnswer(string input)
+ {
+ //Given this question respond in a chatgpt like manner and don't take up a real human persona:
+ //string agenda = "Wake up, make my bed and eat breakfast";
+ //string prompt = $"Can you create a to-do list including start time in the form of hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise: \n {textValue}";
+
+ string prompt = "Given this question respond in a chatgpt like manner and don't take up a real human persona: " + input;
+
+ Console.Write($"Input: {prompt}\n");
+
+
+/*
+ CompletionsOptions options = new CompletionsOptions
+ {
+ Temperature = 0.1f, // Controls the randomness of the generated completion (0.0 - 1.0)
+ //Prompts = new[] { prompt },
+ };
+
+ foreach (var item in options.Prompts){
+ Console.WriteLine("HERE:");
+ Console.WriteLine(item);
+ }*/
+
+ var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ foreach (var item in completionsResponse.Value.Choices){
+ Console.WriteLine("HERE:");
+ Console.WriteLine(item.Text);
+ }
+ reply = completion;
+ Console.Write($"Completion: {completion}\n");
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Dashbar.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Dashbar.razor
new file mode 100644
index 000000000..873a5af18
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Dashbar.razor
@@ -0,0 +1,39 @@
+
+
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/EditOneNote.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/EditOneNote.razor
new file mode 100644
index 000000000..be0a1be29
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/EditOneNote.razor
@@ -0,0 +1,59 @@
+@* @page "/onenote"
+@inject IJSRuntime JsRuntime
+@using System.Security.Authentication
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject NavigationManager NavigationManager
+@using Microsoft.AspNetCore.Components
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+@using Microsoft.JSInterop
+@using Microsoft.Fast.Components.FluentUI
+
+
+@using System.Text;
+
+
+ Add to OneNote
+
+
+@code{
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+
+ private GraphServiceClient? graphClient;
+
+ [Inject]
+ protected IAccessTokenProvider AccessTokenProvider { get; set; }
+ protected string? AccessToken { get; private set; }
+
+ protected override async Task OnInitializedAsync()
+ {
+ var tokenResult = await AccessTokenProvider.RequestAccessToken();
+ if (tokenResult.TryGetToken(out var accessToken))
+ {
+ AccessToken = accessToken.Value;
+ }
+
+
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+ var user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+
+
+ var notebook = new Notebook
+ {
+ DisplayName = "My Notebook1"
+ };
+
+ var res = await graphClient.Me.Onenote.Notebooks.PatchAsync(notebook);
+
+ Console.WriteLine("notebook", res.Id);
+ }
+} *@
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Index.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Index.razor
new file mode 100644
index 000000000..10039e79f
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Index.razor
@@ -0,0 +1,647 @@
+@page "/"
+@inject IJSRuntime JsRuntime
+@using System.Security.Authentication
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject NavigationManager NavigationManager
+@using Microsoft.AspNetCore.Components
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+@using Microsoft.JSInterop
+@using Microsoft.Fast.Components.FluentUI
+
+
+@inject IJSRuntime JSRuntime
+
+
+
+
+
+
+
+ @if (DateTime.UtcNow.Hour >= 6 && DateTime.UtcNow.Hour < 11)
+ {
+ var name = context?.User?.Identity?.Name;
+ if (context?.User?.Identity?.Name.Length > 1)
+ {
+ name = context?.User?.Identity?.Name.Split(" ")[0];
+ }
+ Good Morning, @name
+ }
+ else if (DateTime.UtcNow.Hour >= 11 && DateTime.UtcNow.Hour < 18)
+ {
+ var name = context?.User?.Identity?.Name;
+ if (context?.User?.Identity?.Name.Length > 1)
+ {
+ name = context?.User?.Identity?.Name.Split(" ")[0];
+ }
+ Good Afternoon, @name
+ }
+ else
+ {
+ var name = context?.User?.Identity?.Name;
+ if (context?.User?.Identity?.Name.Length > 1)
+ {
+ name = context?.User?.Identity?.Name.Split(" ")[0];
+ }
+ Good Evening, @name
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code{
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+ private GraphServiceClient? graphClient;
+ private string? dateTimeFormat;
+ private IList toDos = new List();
+ Dictionary TaskLists = new Dictionary();
+ private IList allMessages = new List();
+ private IList events = new List();
+ private IList teams = new List();
+ private string status = string.Empty;
+ private string userTimeZone = string.Empty;
+ private string subject = string.Empty;
+ private string attendees = string.Empty;
+ private DateTime start = new DateTime(DateTime.Today.Ticks);
+ private DateTime end = new DateTime(DateTime.Today.Ticks);
+ private string body = string.Empty;
+
+ [Inject]
+ protected IAccessTokenProvider AccessTokenProvider { get; set; }
+ protected string? AccessToken { get; private set; }
+ public int count = 0;
+ public System.Security.Claims.ClaimsPrincipal user { get; set; }
+
+ [JSInvokable]
+ private async Task GetAccessToken()
+ {
+ return this.AccessToken;
+ }
+
+ protected override async Task OnInitializedAsync()
+ {
+ var tokenResult = await AccessTokenProvider.RequestAccessToken();
+ if (tokenResult.TryGetToken(out var accessToken))
+ {
+ AccessToken = accessToken.Value;
+ count += 1;
+ }
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+ user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+ await JSRuntime.InvokeVoidAsync("mgtInterop.configureProvider", AccessToken);
+ //await RerunToDo();
+ //await RerunCal();
+ await RerunEmail();
+ await BeginTeams();
+ }
+
+ public async Task BeginToDos()
+ {
+ if (count > 0)
+ {
+ var toDoList = await graphClient.Me.Todo.Lists.GetAsync(
+ config =>
+ {
+ config.QueryParameters.Top = 5;
+ }
+ );
+ toDos = toDoList?.Value ?? new List();
+ foreach (var item in toDos)
+ {
+ if (item == null)
+ {
+ throw new ArgumentNullException(nameof(item));
+ }
+ var resultTasks = await graphClient.Me.Todo.Lists[item.Id].Tasks.GetAsync();
+ var key = item.DisplayName + "|" + item.Id;
+ TaskLists[key] = resultTasks;
+ }
+ }
+ }
+
+ public async Task RerunToDo()
+ {
+ await BeginToDos();
+ }
+
+ public async Task BeginCal()
+ {
+ if (count > 0)
+ {
+ userTimeZone = user.GetUserGraphTimeZone() ?? "UTC";
+
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+ var graphTimeZone = user.GetUserGraphTimeZone();
+ dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}";
+ DateTime currentDate = DateTime.Now.Date;
+ DateTime nextDay = currentDate.AddDays(1).Date;
+ DateTime endDateTime = nextDay.AddSeconds(-1);
+
+ var eventPage = await graphClient.Me
+ .CalendarView
+ .GetAsync(config =>
+ {
+ // Send user time zone in request so date/time in
+ // response will be in preferred time zone
+ config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\"");
+ // Specifies the start and end of the view on the calendar
+ // Translates to: ?startDateTime=""&endDateTime=""
+ config.QueryParameters.StartDateTime = currentDate.ToString("o");
+ config.QueryParameters.EndDateTime = endDateTime.ToString("o");
+ // Get max 50 per request
+ config.QueryParameters.Top = 50;
+ // Only return fields app will use
+ config.QueryParameters.Select = new[] { "subject", "organizer", "start", "end" };
+ // Order results chronologically
+ config.QueryParameters.Orderby = new[] { "start/dateTime" };
+ });
+
+ events = eventPage?.Value ?? new List();
+ }
+ }
+
+ public async Task RerunCal()
+ {
+ await BeginCal();
+ }
+ public async Task BeginEmail()
+ {
+ // Get the user
+ if (count > 0)
+ {
+ await Task.Delay(1000);
+ var graphTimeZone = user.GetUserGraphTimeZone();
+ dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}";
+
+ //Get mail from inbox
+ var mailPage = await graphClient.Me
+ .MailFolders["Inbox"]
+ .Messages
+ .GetAsync(config =>
+ {
+ config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\"");
+ config.QueryParameters.Select = new string[] { "subject", "sender", "bodyPreview", "receivedDateTime", "isRead" };
+ config.QueryParameters.Orderby = new string[] { "receivedDateTime desc" };
+ });
+
+ allMessages = mailPage?.Value ?? new List();
+ }
+ }
+
+ public async Task RerunEmail()
+ {
+ await BeginEmail();
+ StateHasChanged();
+ }
+
+ public async Task CompleteTask(string ListId, string TaskId)
+ {
+
+ var requestBody = new TodoTask
+ {
+ Status = Microsoft.Graph.Models.TaskStatus.Completed
+ };
+ var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody);
+
+ await BeginToDos();
+ Console.WriteLine(result.Status);
+ StateHasChanged();
+
+ }
+
+ public async Task DeleteTask(string ListId, string TaskId)
+ {
+
+ await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].DeleteAsync();
+ await BeginToDos();
+ StateHasChanged();
+
+ }
+
+ public async Task UnDoTask(string ListId, string TaskId)
+ {
+ var requestBody = new TodoTask
+ {
+ Status = Microsoft.Graph.Models.TaskStatus.NotStarted
+ };
+ var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody);
+
+ await BeginToDos();
+ Console.WriteLine(result.Status);
+ StateHasChanged();
+ //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true);
+ }
+
+ public async Task BeginTeams()
+ {
+ if (count > 0)
+ {
+
+ var teamsPage = await graphClient.Me.JoinedTeams
+ .GetAsync();
+
+ teams = teamsPage.Value;
+
+ //var res = await graphClient.Teams[teamsPage.Value.Id].Channels.GetAsync();
+
+ //Console.WriteLine(teamsPage.Value.Count);
+ }
+ }
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor
new file mode 100644
index 000000000..59151aee0
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor
@@ -0,0 +1,936 @@
+@page "/overview/{ids}"
+@using System.Security.Authentication
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@using Microsoft.Fast.Components.FluentUI
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+
+
+
+
+
+
+
+
+
+
+
+
+ All
+ @foreach (var group in myGroups)
+ {
+ @group.Name
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ addToGroup(mailListValue, teamNameValue, calendarValue)">Add Filter
+
+
+
+
+
+
+
+
+
+
+
+
+ @* OUTLOOK TAB *@
+
+
+
+
+ @foreach (var mail in myMessages)
+ {
+
+
ToggleMail(mail)">
+
+
@mail?.Sender?.EmailAddress?.Name
+
@mail?.Subject
+
@mail?.BodyPreview
+
+
+
+
+
+
3:30PM
+ @if (@mail?.IsRead == false) {
}
+ else {
}
+
+
+
+ deleteMail(currentEmail)">
+
+
+
+
+
+
+ }
+
+
+
+
+ @if (currentEmail != null)
+ {
+
+
+
+
@currentEmail?.Subject
+
From: @currentEmail?.Sender?.EmailAddress?.Name
+
To: @currentEmail?.ToRecipients?[0].EmailAddress?.Address
+
+
+
+ deleteMail(currentEmail)">
+
+
+
+ replyToEmail(true)">
+
+
+
+ replyToEmail(true)">
+
+
+
+
+
+
+
+
+
@((MarkupString)currentEmail?.Body?.Content)
+
+
+
+
+
+
+
+
Re: @currentEmail?.Subject
+
To: @currentEmail?.Sender?.EmailAddress?.Name
+
+
replyToEmail(false)">
+
+
+
+
+
+
+
+
+
+ sendEmail(currentEmail, emailContent)">
+
+
+
+
+
+
+
+
+ }
+
+
+
+
+ @* TEAMS TAB *@
+
+
+
+ @foreach (var team in myTeams)
+ {
+
ToggleTeam(team)">
+
@team?.DisplayName
+
+ }
+
+
+
+ @foreach (var channel in myChannels)
+ {
+
{ToggleChannel(channel); displayChannelData(); }">
+
@channel?.DisplayName
+
+ }
+
+
+
+ @if (currentChannel != null)
+ {
+
+
+ @foreach (var full in fullPage)
+ {
+
+
+
+
@full?.mainMessage?.From?.User?.DisplayName
+
@full?.mainMessage?.CreatedDateTime
+ @if (full?.mainMessage?.DeletedDateTime != null) {
This message has been deleted
}
+ else {
@((MarkupString)full?.mainMessage?.Body?.Content)
}
+
+
+
+ @if (full?.mainMessage?.From.User.Id == myID)
+ {
+ delChannelMessage(full?.mainMessage)">
+
+
+
+ }
+ replyToChannelMsg(true)">
+
+
+
+
+
+
+ @foreach (var reply in full?.replies)
+ {
+
+
+
@reply?.From?.User?.DisplayName
+
@reply?.CreatedDateTime
+
+ @if (reply?.DeletedDateTime != null) {
This message has been deleted
}
+ else {
@((MarkupString)reply?.Body?.Content)
}
+
+
+
+ }
+
+
+ }
+
+
+
+
+
+
+ sendChannelMessage(false)">
+
+
+
+
+ newChannelMessage(newChannelMessageContent)">
+
+
+
+
+
+
+
sendChannelMessage(true)" hidden="@newChannelMessageBool">
+
+ }
+
+
+
+
+ @* CHATS TAB *@
+
+
+
+ @foreach (var myChat in myChats)
+ {
+ @if(myChat?.Topic == null)
+ {
+
+ }
+ else
+ {
+
+ }
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @foreach (var calendarEvent in myEvents)
+ {
+
+
@calendarEvent?.Subject
+
+
+
@FormatIso8601DateTime(calendarEvent?.Start?.DateTime).Substring(0, 10)
+
@FormatIso8601DateTime(calendarEvent?.Start?.DateTime).Substring(11, 5) - @FormatIso8601DateTime(calendarEvent?.Start?.DateTime).Substring(11, 5)
+
+
+
@calendarEvent?.Organizer?.EmailAddress?.Name
+
+
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code{
+ [Parameter]
+ public string ids{ get; set; }
+
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+
+ private GraphServiceClient? graphClient;
+ private string? myID;
+
+ private string? dateTimeFormat;
+ private string? oldData;
+
+ protected override async Task OnInitializedAsync()
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ if (ids != null) { await initialLayout(); }
+
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var me = await graphClient.Me.GetAsync();
+ myID = me?.Id;
+ await refreshContent(4);
+ }
+
+ /*
+ * REFRESH EVERY 10s
+ */
+ private static System.Timers.Timer _timer;
+ private int counter = 60;
+
+ protected override void OnInitialized()
+ {
+ StartTimer();
+ }
+
+ public void StartTimer()
+ {
+ _timer = new System.Timers.Timer(5000);
+ _timer.Elapsed += CountDownTimer;
+ _timer.Enabled = true;
+ }
+
+ public async void CountDownTimer(Object source, System.Timers.ElapsedEventArgs e)
+ {
+ if (counter > 0)
+ {
+ counter -= 1;
+ }
+ else
+ {
+ _timer.Enabled = false;
+ }
+
+ await refreshContent(4);
+ }
+
+ public async Task initialLayout()
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ string idss = ids;
+ string[] idArray = idss.Split('=', 2);
+
+ if (idArray[0] == "mailid")
+ {
+ myActiveId = "Mail";
+ var initMail = await graphClient.Me.Messages[idArray[1]].GetAsync();
+ currentEmail = initMail;
+ }
+ else if (idArray[0] == "teamid")
+ {
+ myActiveId = "Teams";
+ var initTeam = await graphClient.Teams[idArray[1]].GetAsync();
+ currentTeam = initTeam;
+ }
+ StateHasChanged();
+ }
+
+ /*
+ * Refresh the screen
+ */
+ public async Task refreshContent(int page)
+ {
+ if (page == 0) { await getMail(mailQuery); }
+ else if (page == 1)
+ {
+ //await getTeams(teamQuery);
+ //await getChannels();
+ await displayChannelData();
+ }
+ else if (page == 2) { await getChats("hi"); }
+ else if (page == 3) { }
+ else
+ {
+ await getMail(mailQuery);
+ await getTeams(teamQuery);
+ await getChats("hi");
+ }
+ await getCal(calQuery);
+ StateHasChanged();
+ }
+
+ /*
+ * GET MAIL EVENTS
+ */
+ /* MAIL LIST */
+ private IList myMessages = new List();
+
+ /* ASYNCHRONOUSLY GET MAIL */
+ public async Task getMail(string addresses)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ var result = await graphClient.Me.MailFolders.GetAsync();
+
+ var mailPage = await graphClient.Me
+ .MailFolders["Inbox"]
+ .Messages
+ .GetAsync(config =>
+ {
+ //config.Headers.Add("Prefer", "outlook.body-content-type='text'");
+ //config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\"");
+
+ if (addresses != "All") { config.QueryParameters.Filter = "(from/emailAddress/address) eq '" + addresses; }
+
+ config.QueryParameters.Select = new string[] { "subject", "sender", "body", "isRead", "bodyPreview" };
+ //config.QueryParameters.Orderby = new string[] { "receivedDateTime desc" };
+ });
+
+ /*
+ * Set to non-async variable. Can then be accessed in html.
+ */
+ myMessages = mailPage?.Value ?? new List();
+ }
+
+ // REPLY TO EMAILS
+ string? emailContent;
+ private bool emailReply { get; set; } = false;
+ private void replyToEmail(bool change) { emailReply = change; }
+
+ public async void sendEmail(Message originEmail, string content)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ var recipients = originEmail.ToRecipients;
+ var mainAddress = originEmail?.Sender?.EmailAddress?.Address;
+
+ if (recipients == null) { recipients = new List { new Recipient { EmailAddress = new EmailAddress { Address = mainAddress, }, }, }; }
+ else
+ {
+ var mainAddressSend = new Recipient { EmailAddress = new EmailAddress { Address = mainAddress, }, };
+ recipients.Add(mainAddressSend);
+ }
+
+ var requestBody = new Microsoft.Graph.Me.Messages.Item.Reply.ReplyPostRequestBody
+ {
+ Message = new Message
+ {
+ ToRecipients = recipients,
+ },
+ Comment = content,
+ };
+ emailContent = String.Empty;
+ emailReply = false;
+
+ await graphClient.Me.Messages[originEmail?.Id].Reply.PostAsync(requestBody);
+ await refreshContent(1);
+ }
+
+ public async Task deleteMail(Message email)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ await graphClient.Me.Messages[email.Id].DeleteAsync();
+
+ if(email == currentEmail) { currentEmail = null; }
+ await refreshContent(0);
+ }
+
+ /*
+ * GET TEAM EVENTS
+ */
+ /* TEAMS LIST */
+ private IList myTeams = new List();
+
+ /* ASYNCHRONOUSLY GET TEAMS */
+ public async Task getTeams(string addresses)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var teamPage = await graphClient.Me.JoinedTeams.GetAsync();
+ myTeams = teamPage?.Value ?? new List();
+ }
+
+ /*
+ * GET CHANNEL EVENTS
+ */
+ /* CHANNEL LIST */
+ private IList myChannels = new List();
+
+ /* ASYNCHRONOUSLY GET CHANNELS */
+ public async Task getChannels()
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var channelPage = await graphClient.Teams[currentTeam.Id].Channels.GetAsync();
+ myChannels = channelPage?.Value ?? new List();
+ }
+
+ /*
+ * GET ALL CHANNEL CHATS
+ */
+ public class messageBlock
+ {
+ public ChatMessage? mainMessage { get; set; }
+ public IList? replies { get; set; }
+ }
+
+ private IList fullPage = new List();
+ private IList myConvos = new List();
+ private IList myReplies = new List();
+
+ public async Task displayChannelData()
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var fullPageLocal = new List();
+
+ if (currentChannel != null)
+ {
+ var convoPageTest = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages.GetAsync();
+ myConvos = convoPageTest?.Value ?? new List();
+
+ foreach (var conversation in myConvos)
+ {
+ var replyPageTest = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages[conversation.Id].Replies.GetAsync();
+ myReplies = replyPageTest?.Value ?? new List();
+
+ fullPageLocal.Add(new messageBlock { mainMessage = conversation, replies = myReplies });
+ }
+ }
+
+ fullPageLocal.Reverse();
+ fullPage = fullPageLocal;
+ await refreshContent(1);
+ }
+
+ // Create new channel message
+ string? newChannelMessageContent;
+ private bool newChannelMessageBool { get; set; } = false;
+ private void sendChannelMessage(bool change) { newChannelMessageBool = change; }
+
+ public async void newChannelMessage(string content)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ var requestBody = new ChatMessage
+ {
+ Body = new ItemBody
+ {
+ Content = content,
+ },
+ };
+
+ newChannelMessageContent = String.Empty;
+ newChannelMessageBool = false;
+
+ var result = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages.PostAsync(requestBody);
+ await refreshContent(1);
+ }
+
+ // Delete Channel message
+ public async void delChannelMessage(ChatMessage currMessage)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages[currMessage.Id].SoftDelete.PostAsync();
+ await refreshContent(1);
+ }
+
+ // Reply to a message account
+ string? messageContent;
+ private bool messageReply { get; set; } = false;
+ private void replyToChannelMsg(bool change) { messageReply = change; }
+
+ public async void replyChannelMessage(ChatMessage currMessage)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var requestBody = new ChatMessage
+ {
+ Body = new ItemBody
+ {
+ ContentType = BodyType.Html,
+ Content = "Hello World",
+ },
+ };
+ var result = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages[currMessage.Id].Replies.PostAsync(requestBody);
+ await refreshContent(1);
+ }
+
+ /*
+ * GET PERSONAL CHATS
+ */
+ /* CHAT LIST */
+ private IList myChats = new List();
+ private IList myChatReplies = new List();
+
+ /* ASYNCHRONOUSLY GET CHATS */
+ public async Task getChats(string addresses)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var chatPage = await graphClient.Me.Chats.GetAsync();
+
+ myChats = chatPage?.Value ?? new List();
+
+ foreach (var c in myChats)
+ {
+
+ }
+ }
+
+
+ /*
+ * GET CALENDAR EVENTS
+ */
+ /* EVENTS LIST */
+ private IList myEvents = new List();
+
+ /* ASYNCHRONOUSLY GET EVENTs */
+ public async Task getCal(string addresses)
+ {
+ // Get the user
+ //var user = (await authenticationStateTask).User;
+ //var graphTimeZone = user.GetUserGraphTimeZone();
+ //dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}";
+
+ // Calculate the start and end of the current week in user's time zone
+ //var startOfWeek = GetUtcStartOfWeekInTimeZone(DateTime.Today, graphTimeZone);
+ //var endOfWeek = startOfWeek.AddDays(7);
+
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ /*
+ * GET ALL CALENDAR EVENTS
+ */
+ /*var eventPage = await graphClient.Me
+ .CalendarView
+ .GetAsync(config =>
+ {
+ //config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\"");
+ //config.QueryParameters.StartDateTime = startOfWeek.ToString("o");
+ //config.QueryParameters.EndDateTime = endOfWeek.ToString("o");
+ config.QueryParameters.Top = 50;
+ config.QueryParameters.Select = new[] { "subject", "organizer", "start", "end" };
+ config.QueryParameters.Orderby = new[] { "start/dateTime" };
+ });*/
+
+ var eventPage = await graphClient.Me.Calendar.Events.GetAsync();
+
+ myEvents = eventPage?.Value ?? new List();
+ }
+
+ /*
+ * NEW GROUP ADDED - UPDATE ASYNC
+ */
+ public string mailQuery { get; set; } = "All";
+ public string teamQuery { get; set; } = "All";
+ public string calQuery { get; set; } = "All";
+
+ async void UpdateGroup(ChangeEventArgs args)
+ {
+ if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString()))
+ {
+ string searchTerm = args.Value.ToString()!.ToLower();
+ if (searchTerm == "all")
+ {
+ mailQuery = "All";
+ teamQuery = "All";
+ calQuery = "All";
+ await refreshContent(4);
+ }
+ else
+ {
+ mailQuery = searchTerm.Split(';')[0] + "'";
+ teamQuery = searchTerm.Split(';')[1] + "'";
+ calQuery = searchTerm.Split(';')[2] + "'";
+
+ await refreshContent(4);
+ }
+ }
+ }
+
+ /*
+ * DATE-TIME STUFF
+ */
+ private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId)
+ {
+ // Time zone returned by Graph could be Windows or IANA style
+ // TimeZoneConverter can take either
+ TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId);
+
+ // Assumes Sunday as first day of week
+ int diff = System.DayOfWeek.Sunday - today.DayOfWeek;
+
+ // create date as unspecified kind
+ var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified);
+
+ // convert to UTC
+ return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone);
+ }
+
+ private string FormatIso8601DateTime(string? iso8601DateTime)
+ {
+ if (string.IsNullOrEmpty(iso8601DateTime))
+ {
+ return string.Empty;
+ }
+
+ // Load into a DateTime
+ var dateTime = DateTime.Parse(iso8601DateTime);
+
+ if (!string.IsNullOrWhiteSpace(dateTimeFormat))
+ {
+ // Format it using the user's settings
+ return dateTime.ToString(dateTimeFormat);
+ }
+
+ // Fallback to return original value
+ return iso8601DateTime;
+ }
+
+ /*
+ * HANDLE WHICH TAB IS BEING PRESENTED
+ */
+ string? myActiveId;
+ FluentTab? changedto;
+ private void HandleOnTabChange(FluentTab tab) { changedto = tab; }
+
+ /*
+ * SHOW THE DETAILS OF THE CURRENT EMAIL/TEAM/CHANNEL/CHAT
+ */
+ private Message currentEmail { get; set; } = null;
+ private async void ToggleMail(Message email)
+ {
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ currentEmail = (currentEmail == email) ? null : email;
+
+
+ //Set to read.
+ if(currentEmail?.IsRead == false)
+ {
+ var requestBody = new Message
+ {
+ IsRead = true,
+ };
+ await graphClient.Me.Messages[currentEmail.Id].PatchAsync(requestBody);
+ await getMail("All");
+ StateHasChanged();
+ }
+
+ emailContent = String.Empty;
+ emailReply = false;
+ }
+
+ private Team currentTeam { get; set; } = null;
+ private async void ToggleTeam(Team teamsChat)
+ {
+ currentTeam = (currentTeam == teamsChat) ? null : teamsChat;
+ currentChannel = null;
+ await getChannels();
+ StateHasChanged();
+ }
+
+ private Channel currentChannel { get; set; } = null;
+ private async void ToggleChannel(Channel channelChat)
+ {
+ currentChannel = (currentChannel == channelChat) ? null : channelChat;
+ StateHasChanged();
+ }
+
+ private Chat currentChat { get; set; } = null;
+ private void ToggleChat(Chat chat)
+ {
+ currentChat = (currentChat == chat) ? null : chat;
+ }
+
+ /*
+ * ALL INPUT BOXES TO CREATE GROUPS
+ * GETTING DATA FROM GRAPH TO FILL SEARCH BOXES
+ */
+ FluentSearch? mailSearchTest;
+ FluentSearch? teamSearchTest;
+ FluentSearch? calSearchTest;
+ string? mailListValue = string.Empty;
+ string? teamNameValue = string.Empty;
+ string? calendarValue = string.Empty;
+
+ List searchData = new()
+ {
+ "ajp20@7qp7mb.onmicrosoft.com",
+ "Brendon",
+ "Charmaine",
+ "Indraneel",
+ "Konstantinos",
+ "Mahanoor"
+ };
+
+ List mailResults = defaultResults();
+ List teamResults = defaultResults();
+ List calResults = defaultResults();
+ static string defaultResultsText = "no results";
+
+ static List defaultResults()
+ {
+ return new() { defaultResultsText };
+ }
+
+ void handleMailSearchInput(ChangeEventArgs args)
+ {
+ if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString()))
+ {
+ string searchTerm = args.Value.ToString()!.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = searchData.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0) { mailResults = temp; }
+ }
+ }
+ else
+ {
+ mailResults = defaultResults();
+ mailListValue = string.Empty;
+ }
+ }
+
+ void handleTeamSearchInput(ChangeEventArgs args)
+ {
+ if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString()))
+ {
+ string searchTerm = args.Value.ToString()!.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = searchData.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0) { teamResults = temp; }
+ }
+ }
+ else
+ {
+ teamResults = defaultResults();
+ teamNameValue = string.Empty;
+ }
+ }
+
+ void handleCalSearchInput(ChangeEventArgs args)
+ {
+ if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString()))
+ {
+ string searchTerm = args.Value.ToString()!.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = searchData.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0) { calResults = temp; }
+ }
+ }
+ else
+ {
+ calResults = defaultResults();
+ calendarValue = string.Empty;
+ }
+ }
+
+ /*
+ * CREATE LOCAL CLASS TO STORE GROUPS.
+ * ALSO SEND TO API MONGO DB
+ */
+ public class GroupItem
+ {
+ public string? Name { get; set; }
+ public string? mailName { get; set; }
+ public string? teamName { get; set; }
+ public string? calName { get; set; }
+ }
+
+ string? placename { get; set; } = string.Empty;
+ string? selectedGroupValue;
+ private List myGroups = new();
+
+ void addToGroup(string m, string t, string c)
+ {
+ if (!string.IsNullOrWhiteSpace(placename) && !string.IsNullOrWhiteSpace(m) && !string.IsNullOrWhiteSpace(t) && !string.IsNullOrWhiteSpace(c))
+ {
+ myGroups.Add(new GroupItem { Name = placename, mailName = m, teamName = t, calName = c });
+ }
+ }
+
+
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor.css b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor.css
new file mode 100644
index 000000000..eb57fac12
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor.css
@@ -0,0 +1,628 @@
+
+.chat-bot {
+ position: fixed;
+ bottom: 20px;
+ right: 20px;
+ z-index: 3;
+}
+
+/*
+*Generic
+*/
+ul {
+ list-style-type: none;
+}
+
+.mainContent {
+ display: flex;
+ z-index: 25;
+}
+
+.emailTeamsSection {
+ width: 85%;
+}
+
+/*
+* EMAILS
+*/
+.mailPage {
+ height: 70vh;
+ display: flex;
+}
+
+.emailBar {
+ height: 100%;
+ width: 25%;
+ overflow-y: scroll;
+}
+
+.emailSelect {
+}
+
+.emailSelectBox {
+ font-family: 'Pavanam', sans-serif;
+ padding: 5px;
+ padding-left: 15px;
+ display: flex;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+}
+
+ .emailSelectBox:hover {
+ border-radius: 10px;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ }
+
+.emailData {
+ width: 70%;
+}
+
+ .emailData .sender {
+ padding-right: 10px;
+ margin-bottom: 0;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .subject {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .content {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+
+.emailRight {
+ width: 30%;
+ display: flex;
+ flex-direction: column;
+}
+
+ .emailRight .emailRightData {
+ display: flex;
+ width: 100%;
+ justify-content: space-between;
+ }
+
+.emailRightData .timing {
+}
+
+.emailRightData .dotOn {
+ height: 15px;
+ width: 15px;
+ background-color: #ADD8E6;
+ border: 1px solid #cdd4d4;
+ border-radius: 50%;
+}
+
+.emailRightData .dotOff {
+ width: 10%;
+ height: 15px;
+ width: 15px;
+ border: 1px solid #cdd4d4;
+ background-color: white;
+ border-radius: 50%;
+}
+
+.emailRight .emailInteraction {
+ display: flex;
+}
+
+
+$delete2-red: red;
+
+.btn {
+}
+
+.btn-delete {
+
+}
+
+.btn2 {
+ display: flex;
+ align-items: center;
+ background: none;
+ border: none;
+ height: 35px;
+ cursor: pointer;
+}
+
+ .btn2:focus {
+ outline: none;
+ border: none;
+ }
+
+ .btn2 .mdi {
+ margin-right: 4px;
+ margin-left: 4px;
+ }
+
+ .btn2 > .mdi-delete {
+ color: red;
+ }
+
+ .btn2 > .mdi-reply-outline {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-reply-all-outline {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-send-outline {
+ color: blue;
+ }
+
+ .btn2 > .mdi-close {
+ color: black;
+ }
+
+.btn-delete2 {
+ font-size: 16px;
+}
+
+ .btn-delete2 > .mdi-delete-empty {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2 > .mdi-reply {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-reply-all {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-send {
+ display: none;
+ color: blue;
+ }
+
+ .btn-delete2 > .mdi-close-outline {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2:hover {
+ background-color: lighten(red, 48%);
+ }
+
+ .btn-delete2:hover > .mdi-delete-empty {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-delete {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-outline {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all-outline {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-send {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-send-outline {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-close-outline {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-close {
+ display: none;
+ }
+
+ .btn-delete2:focus {
+ box-shadow: 0px 0px 0px 4px lighten(red, 40%);
+ }
+
+.emailGap {
+ padding-bottom: 5px;
+ opacity: 0;
+}
+
+.emailDisplay {
+ width: 75%;
+ overflow-y: scroll;
+ margin-left: 25px;
+ margin-top: 5px;
+}
+
+.emailDisplayContent {
+ font-family: 'Pavanam', sans-serif;
+ height: 100%;
+}
+
+ .emailDisplayContent .heading {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ margin-bottom: 10px;
+
+ display: flex;
+ justify-content: space-between;
+ }
+ .emailDisplayContent .heading .ccDetails {
+ width: 85%;
+ }
+
+ .emailDisplayContent .heading .emailInteraction {
+ width: 15%;
+ display: flex;
+ }
+
+ .emailDisplayContent .heading .ccDetails .subject {
+ overflow-wrap: break-all;
+ font-size: large;
+ padding: 10px;
+ margin-bottom: 5px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .sender {
+ padding-left: 10px;
+ margin-bottom: 0px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .recipient {
+ padding-left: 10px;
+ font-size: small;
+ margin-bottom: 0px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .content {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ width: 100%;
+ }
+
+ .emailDisplayContent .content .body {
+ word-wrap: break-word;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .emailReply {
+ width: 100%;
+ margin-top:10px;
+ }
+
+ .emailReply {
+ }
+
+ .emailReply .heading {
+ display:flex;
+ flex-direction: column;
+ padding: 20px;
+ margin-bottom: 0px;
+ }
+ .heading .subject {
+ font-size:large;
+ margin-bottom: 0px;
+ }
+ .heading .recipient {
+ margin-bottom: 5px;
+ }
+
+ .emailReply .emailResponseContent{
+ width: 100%;
+ display: flex;
+ }
+
+ .replyDetails {
+ display: flex;
+ justify-content: space-between;
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .replyContent {
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .mdi-close {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+
+ .emailResponseContent .mdi-send {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+ .emailResponseContent .responseBox {
+ margin-top: 20px;
+ width:100px;
+ }
+/*
+* TEAMS
+*/
+
+.teamsPage {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.teamsBar {
+ height: 100%;
+ width: 20%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+.teamsSelectBox {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+}
+ .teamName {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.channelBar {
+ height: 100%;
+ width: 15%;
+ margin-left: 10px;
+ margin-top: 0;
+ padding-top: 5px;
+}
+ .channelSelectBox {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+
+ .channelName {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.teamChatBar {
+ width: 65%;
+ overflow-y: scroll;
+ display: flex;
+ flex-direction: column-reverse;
+
+ margin-left: 10px;
+}
+
+.teamsMessageBlock {
+ padding: 20px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+}
+
+.nestedMessages {
+ padding: 10px;
+}
+
+.teamMessageBlock {
+ font-family: 'Pavanam', sans-serif;
+
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+
+ margin-top: 20px;
+ padding-top:10px;
+ padding-bottom:10px;
+}
+
+.teamChatInital {
+ display:flex;
+ justify-content:space-between;
+ padding-left: 20px;
+ margin-bottom: 10px;
+ margin-top: 10px;
+}
+
+ .teamChatInital .details {
+ width: 90%;
+ }
+ .teamChatInital .interact {
+ width: 10%;
+ }
+
+.teamChatName {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+}
+
+.teamChatContent {
+ width: 100%;
+ padding-bottom: 5px;
+ font-size:medium;
+}
+
+.teamReplySection {
+ width: 70%;
+ margin-bottom: 10px;
+}
+
+.teamInteract {
+ display: flex;
+}
+
+.teamMsgInteract {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+}
+
+/*
+* Chats
+*/
+.chatsPage {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.mypChats {
+ width: 20%;
+ height: 100%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+ .chatSelectBox {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+ .chatName {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.myChatBar {
+ width: 80%;
+}
+
+
+/*
+* Calendar section
+*/
+.calendarSection {
+ font-family: 'Pavanam', sans-serif;
+ width: 15%;
+ height: 70vh;
+ flex-direction: column;
+ display: flex;
+ overflow-y: scroll;
+ margin-left: 20px;
+ margin-top: 40px;
+}
+
+ .calendarSection .event {
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ padding: 10px;
+ margin-top:5px;
+ }
+ .event .subject {
+ font-size:large;
+ padding-bottom: 0px;
+ margin-bottom: 0px;
+ text-align: center;
+ }
+
+ .event .timing {
+ }
+ .event .timing .date {
+ margin-bottom: 0px;
+ }
+
+ .event .timing .time {
+ margin-bottom: 0px;
+ }
+
+ .event .organiser {
+ margin-bottom: 0px;
+ }
+
+/*
+* Group settings
+*/
+.groupSec {
+ display: flex;
+}
+
+.groupSettings {
+ display: flex;
+}
+
+.addGroup {
+ display: flex;
+}
+
+.testing1 {
+ position: absolute;
+ z-index: 99;
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Schedulingmeeting.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Schedulingmeeting.razor
new file mode 100644
index 000000000..697ef4443
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Schedulingmeeting.razor
@@ -0,0 +1,249 @@
+@page "/meeting"
+
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using Azure
+@using Azure.AI.OpenAI
+@using System.Text
+@using System.Security.Authentication
+@using TimeZoneConverter
+@using System;
+@using System.Linq;
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject GraphSample.AI.OpenAIService OpenAIService
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+
+
+
+
+
+
+
+
Meeting
+
Here you can schedule a meeting with your team
+
+
+
Get Free Schedule
+
Find Meeting Times
+
+
+
+
+ @if (meetingTimeSuggestions != null)
+ {
+ foreach (var suggestion in meetingTimeSuggestions)
+ {
+
@suggestion.MeetingTimeSlot.Start.DateTime
+ }
+ }
+
+
+ @* display the gettingFreeSchedule results here in a table *@
+
+
+ @if (gettingFreeSchedule != null)
+ {
+
+
+
+ Attendee
+ Availability
+
+
+
+ @foreach (var attendee in gettingFreeSchedule)
+ {
+
+ @attendee[0]
+ @attendee[1]
+
+ }
+
+
+ }
+
+
+
+
+@code{
+
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+ private GraphServiceClient? graphClient;
+ string attendees = string.Empty;
+ private DateTime startTime = new DateTime(DateTime.Today.Ticks);
+ private DateTime endTime = new DateTime(DateTime.Today.Ticks);
+ public List? meetingTimeSuggestions;
+ public List> gettingFreeSchedule = new List>();
+
+ [Inject]
+ protected IAccessTokenProvider? AccessTokenProvider { get; set; }
+ protected string? AccessToken { get; private set; }
+ public List messages = new List();
+ private static HttpClient Http = new HttpClient();
+
+ private string changeFormat(string inputtedFromUser){ // "2019-04-16T09:00:00",
+ string[] dateAndTime = inputtedFromUser.Split(' ');
+ string[] date = dateAndTime[0].Split('/');
+ string[] time = dateAndTime[1].Split(':');
+ string year = date[2];
+ string month = date[1];
+ string day = date[0];
+ string hour = time[0];
+ string minute = time[1];
+ string second = time[2];
+ string result = year + "-" + month + "-" + day + "T" + hour + ":" + minute + ":" + second[0..2];
+ return result;
+ }
+
+ protected override async Task OnInitializedAsync()
+ {
+ var tokenResult = await AccessTokenProvider.RequestAccessToken();
+ if (tokenResult.TryGetToken(out var accessToken))
+ {
+ AccessToken = accessToken.Value;
+ }
+
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ }
+ public async Task FindMeetingTimes(){
+ var attendeesArray = attendees.Split(';')
+ .Select(email => email.Trim())
+ .ToList();
+
+ var requestBody = new Microsoft.Graph.Me.FindMeetingTimes.FindMeetingTimesPostRequestBody
+ {
+ Attendees = attendeesArray.Select(email => new AttendeeBase
+ {
+ Type = AttendeeType.Required,
+ EmailAddress = new EmailAddress
+ {
+ Address = email,
+ },
+ }).ToList(),
+
+
+ TimeConstraint = new TimeConstraint
+ {
+ ActivityDomain = ActivityDomain.Work,
+ TimeSlots = new List
+ {
+ new TimeSlot
+ {
+ Start = new DateTimeTimeZone
+ {
+ DateTime = changeFormat(startTime.ToString()),
+ TimeZone = "Pacific Standard Time",
+ },
+ End = new DateTimeTimeZone
+ {
+ DateTime = changeFormat(endTime.ToString()),
+ TimeZone = "Pacific Standard Time",
+ },
+ },
+ },
+ },
+ IsOrganizerOptional = false,
+ MeetingDuration = TimeSpan.FromHours(1),
+ ReturnSuggestionReasons = true,
+ MinimumAttendeePercentage = 100,
+ };
+ var result = await graphClient.Me.FindMeetingTimes.PostAsync(requestBody, (requestConfiguration) =>
+ {
+ requestConfiguration.Headers.Add("Prefer", "outlook.timezone=\"Pacific Standard Time\"");
+ });
+ Console.WriteLine(startTime.ToString());
+ Console.WriteLine(endTime.ToString());
+ Console.WriteLine(result.MeetingTimeSuggestions.ToList().Count);
+ meetingTimeSuggestions = result.MeetingTimeSuggestions;
+
+ }
+
+
+ public async Task GetFreeSchedule(){
+ // Code snippets are only available for the latest version. Current version is 5.x
+ var attendeesArray = attendees.Split(';')
+ .Select(email => email.Trim())
+ .ToList();
+
+ // create a new List that sotes the email addresses of the attendees
+
+ var requestBody = new Microsoft.Graph.Me.Calendar.GetSchedule.GetSchedulePostRequestBody
+ {
+ Schedules = new List
+ {
+ attendeesArray[0],
+ },
+ StartTime = new DateTimeTimeZone
+ {
+ DateTime = changeFormat(startTime.ToString()),
+ TimeZone = "Pacific Standard Time",
+ },
+ EndTime = new DateTimeTimeZone
+ {
+ DateTime = changeFormat(endTime.ToString()),
+ TimeZone = "Pacific Standard Time",
+ },
+ AvailabilityViewInterval = 60,
+ };
+ var result = await graphClient.Me.Calendar.GetSchedule.PostAsync(requestBody, (requestConfiguration) =>
+ {
+ requestConfiguration.Headers.Add("Prefer", "outlook.timezone=\"Pacific Standard Time\"");
+ });
+
+ @* foreach (var schedule in result.Value)
+ {
+ Console.WriteLine("ScheduleId: " + schedule.ScheduleId);
+ Console.WriteLine("AvailabilityView: " + schedule.AvailabilityView);
+ Console.WriteLine("ScheduleItems:");
+
+ foreach (var scheduleItem in schedule.ScheduleItems)
+ {
+ Console.WriteLine(" Status: " + scheduleItem.Status);
+ Console.WriteLine(" Start: " + scheduleItem.Start.DateTime);
+ Console.WriteLine(" End: " + scheduleItem.End.DateTime);
+ Console.WriteLine(" TimeZone: " + scheduleItem.Start.TimeZone);
+ Console.WriteLine();
+ }
+
+ Console.WriteLine("Working Hours:");
+ Console.WriteLine(" StartTime: " + schedule.WorkingHours.StartTime);
+ Console.WriteLine(" EndTime: " + schedule.WorkingHours.EndTime);
+ Console.WriteLine(" TimeZone: " + schedule.WorkingHours.TimeZone.Name);
+ Console.WriteLine();
+ }
+ *@
+ foreach (var schedule in result.Value)
+ {
+ foreach (var scheduleItem in schedule.ScheduleItems){
+ gettingFreeSchedule.Add(new List(){scheduleItem.Start.DateTime.ToString(), scheduleItem.End.DateTime.ToString()});
+ }
+
+ }
+ foreach (var item in gettingFreeSchedule){
+ Console.WriteLine(item[0]);
+ Console.WriteLine(item[1]);
+ }
+
+ }
+
+}
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SignIn.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SignIn.razor
new file mode 100644
index 000000000..ef818245a
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SignIn.razor
@@ -0,0 +1,134 @@
+@using Microsoft.AspNetCore.Components.Authorization
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+@using Microsoft.JSInterop
+@using Microsoft.AspNetCore.WebUtilities
+@using Microsoft.Graph
+
+@inject IJSRuntime JSRuntime
+@inject NavigationManager Navigation
+@inject SignOutSessionStateManager SignOutManager
+
+@using System.Security.Authentication
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject NavigationManager NavigationManager
+@using Microsoft.AspNetCore.Components
+@using Microsoft.Fast.Components.FluentUI
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Sign in to see your dashboard
+
Sign in with your work or school account
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor
new file mode 100644
index 000000000..8126f9b89
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor
@@ -0,0 +1,744 @@
+@page "/NotesPro"
+
+@using System.Security.Authentication
+@using System.IO;
+@using GrapeCity.Documents.Pdf;
+@using DocumentFormat.OpenXml.Packaging;
+@using Azure
+@using Azure.AI.OpenAI
+@using System.Text
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using Microsoft.Graph.Models.ODataErrors
+@using Microsoft.Kiota.Abstractions
+@using Microsoft.Kiota.Abstractions.Serialization
+@using Microsoft.Fast.Components.FluentUI
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject GraphSample.AI.OpenAIService OpenAIService
+
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@*@inject ILogger Logger*@
+@inject GraphSample.AI.OpenAIService OpenAIService
+
+
+
+
+
+
+
+
+
+
+
+ Select File
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @foreach (var file in data_response)
+ {
+ string npath = path + file.Id;
+
+ GetContent(file.Id, file.Name)">
+ }
+
+
+
+
+
+
+
+ File Chosen: @fileName
+ @if (fileName != String.Empty)
+ {
+
+ }
+
+
+
+
Summarise
+
Write To OneNote
+
+ @if (isLoading)
+ {
+
Uploading...
+ }
+
+
+ @if (isSummarising)
+ {
+
Summarising...
+
+ }
+
+ else if (isWriting)
+ {
+
Writing to OneNote...
+
+
Summary:
+
@summary
+ }
+
+ else if (!string.IsNullOrEmpty(summary))
+ {
+
Summary:
+
@summary
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code{
+
+ //ToDo:
+ // 1. Return tuple instead for PDF/DOC/ppt to refactor
+ // 2. Apply error handling to GetContent so folders not clicked
+ // 3. Clean up the AI function too bulky
+
+
+ [CascadingParameter]
+ protected Task? authenticationStateTask { get; set; }
+ private FluentDialog? MyFluentDialog;
+ public bool Modal = true;
+ private GraphServiceClient? graphClient;
+ private List data_response = new List();
+ protected const string path = "/me/drive/items/";
+ protected string driveId = "";
+ protected string itemId = "";
+ protected string summary = "";
+ protected bool uploadMethod = true; // true for file upload, false for M365
+
+ //File Upload variables
+ private List loadedFile = new();
+ private long maxFileSize = 1024 * 100000;
+ private int maxAllowedFiles = 1;
+ private bool isLoading;
+ private bool isSummarising;
+ private bool isWriting;
+ private bool noSummary = true;
+
+ FluentTab? changedto;
+ private string dropClass = "";
+ public string fileName = "";
+
+ private async void HandleOnTabChange(FluentTab tab)
+ {
+ changedto = tab;
+ if (tab.Text == "Upload from OneDrive")
+ {
+ uploadMethod = false;
+ await listFiles();
+ }
+ }
+
+ private void HandleDragEnter()
+ {
+ dropClass = "dropzone-drag";
+ }
+
+ private void HandleDragLeave()
+ {
+ dropClass = "";
+ }
+
+ protected override void OnAfterRender(bool firstRender)
+ {
+ if (firstRender)
+ {
+ MyFluentDialog!.Hide();
+ }
+ }
+
+ protected override async Task OnInitializedAsync()
+ {
+ await listFiles();
+ }
+
+ private async void OnOpen()
+ {
+ MyFluentDialog!.Show();
+ Console.WriteLine("Clicked");
+ //uploadMethod = false;
+ //await listFiles();
+
+ }
+
+ private void OnDismiss(DialogEventArgs args)
+ {
+ if (args is not null && args.Reason is not null && args.Reason == "dismiss")
+ {
+ MyFluentDialog!.Hide();
+ }
+ }
+
+ // Loading files
+ private void LoadFile(InputFileChangeEventArgs e)
+ {
+ isLoading = true;
+ loadedFile.Clear();
+
+ foreach (var file in e.GetMultipleFiles(maxAllowedFiles))
+ {
+ loadedFile.Add(file);
+ fileName = file.Name;
+ }
+
+ isLoading = false;
+ MyFluentDialog!.Hide();
+ }
+
+
+ // apply error handling to not click on folders
+ // Can do regex to check if path is folder
+ protected void GetContent(string path, string name)
+ {
+
+ Console.WriteLine("Clicked on: " + path);
+ itemId = path;
+ fileName = name;
+ MyFluentDialog!.Hide();
+
+ }
+
+ public async Task ConvertToStream(IBrowserFile file)
+ {
+ var memoryStream = new MemoryStream();
+ await file.OpenReadStream(maxFileSize).CopyToAsync(memoryStream);
+ memoryStream.Seek(0, SeekOrigin.Begin);
+ return memoryStream;
+ }
+
+
+ private async Task SummariseFile()
+ {
+ summary = "";
+ var content = "";
+ isSummarising = true; // Set the flag to indicate that summarization is in progress
+
+ if (uploadMethod)
+ {
+ if (loadedFile.Count == 0)
+ {
+ isSummarising = false;
+ return;
+ }
+
+ // Read the content of the file
+ var file = loadedFile[0];
+ Stream stream = await ConvertToStream(file);
+ fileName = file.Name;
+ content = ExtractTextFromStream(stream);
+
+ Console.WriteLine("Extracted text");
+ }
+
+ else
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ var user = (await authenticationStateTask).User;
+ var contentStream = await graphClient.Drives[driveId].Items[itemId].Content.GetAsync();
+ content = ExtractTextFromStream(contentStream);
+ var fileItem = await graphClient.Drives[driveId].Items[itemId].GetAsync();
+ fileName = fileItem.Name;
+
+ Console.WriteLine("Got text response");
+ }
+
+
+ await SummariseText(content);
+ noSummary = false;
+ isSummarising = false;
+ Console.WriteLine(summary);
+ }
+
+
+ // Event handler for the "Summarise" button click
+ protected async Task SummariseText(string content)
+ {
+
+ // Perform summarization until the overall summary is less than 3000 characters
+ var summaries = new List();
+ var overallSummary = "";
+ Console.WriteLine("Inside ai: " + content);
+
+ // Split the content into smaller chunks
+ var chunkSize = 750; // Adjust this value as per your model's character limit
+ var chunks = SplitContentIntoChunks(content, chunkSize);
+
+ // Perform summarization for each chunk
+ foreach (var chunk in chunks)
+ {
+ string prompt = $"Summarise the following text in a professional and business like manner and in extreme detail (Include any equations mentioned):\n\n{chunk}\n";
+ //Console.Write($"Input: {prompt}\n");
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completion}\n");
+ summaries.Add(completion);
+ string finish = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completionFinish}\n");
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completionFinish}\n");
+ summaries.Add(completionFinish2);
+ }
+
+ // Combine the individual summaries into an overall summary
+ overallSummary = string.Join(" ", summaries);
+
+ //Break the loop if the overall summary exceeds 2500 characters
+ if (overallSummary.Length >= 5000)
+ {
+ summaries.Clear();
+
+ string prompt = $"This summary is slightly too long, please rewrite without losing any detail but in a more concise way:\n\n{overallSummary}\n";
+ //Console.Write($"Input: {prompt}\n");
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completion}");
+ summaries.Add(completion);
+ string finish = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completionFinish}\n");
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completionFinish}\n");
+ summaries.Add(completionFinish2);
+ }
+
+ //Break the loop if the overall summary exceeds 2500 characters
+ else if (overallSummary.Length <= 500)
+ {
+ summaries.Clear();
+
+ string prompt = $"This summary is slightly too short, please rewrite without losing any detail but in a more easy to understand way, including any extra details that would help:\n\n{overallSummary}\n";
+ //Console.Write($"Input: {prompt}\n");
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completion}");
+ summaries.Add(completion);
+ string finish = $"Keep summarising:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completionFinish}\n");
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+ //Console.Write($"Completion: {completionFinish}\n");
+ summaries.Add(completionFinish2);
+ }
+
+ overallSummary = string.Join(" ", summaries);
+ summaries.Clear();
+ summary = overallSummary;
+ Console.WriteLine("Generated AI summary");
+
+ }
+
+ // Helper method to split the content into smaller chunks
+ private IEnumerable SplitContentIntoChunks(string content, int chunkSize)
+ {
+ var sentences = content.Split('.', '!', '?');
+ var currentChunk = new StringBuilder();
+
+ foreach (var sentence in sentences)
+ {
+ if (currentChunk.Length + sentence.Length + 1 <= chunkSize)
+ {
+ currentChunk.Append(sentence).Append('.');
+ }
+ else
+ {
+ yield return currentChunk.ToString();
+ currentChunk.Clear().Append(sentence).Append('.');
+ }
+ }
+
+ if (currentChunk.Length > 0)
+ {
+ yield return currentChunk.ToString();
+ }
+ }
+
+ // Maybe return tuple instead
+ protected string ExtractTextFromStream(Stream input)
+ {
+ string text = "";
+
+ if (IsPDF(input))
+ {
+ text = ExtractTextFromPDF(input);
+ Console.WriteLine("Is PDF");
+ }
+ else if (IsWordDocument(input))
+ {
+ text = ExtractTextFromWord(input);
+ Console.WriteLine("Is Word");
+ }
+ else if (IsPowerPointDocument(input))
+ {
+ text = ExtractTextFromPowerPoint(input);
+ Console.WriteLine("Is PPT");
+ }
+
+ return text;
+ }
+
+ private bool IsPDF(Stream stream)
+ {
+ try
+ {
+ var document = new GcPdfDocument();
+ document.Load(stream);
+ return true;
+ }
+ catch
+ {
+ return false;
+ }
+ }
+
+ public string ExtractTextFromPDF(Stream stream)
+ {
+
+ var document = new GcPdfDocument();
+ document.Load(stream);
+ var text = document.GetText();
+
+ return text;
+ }
+
+ private bool IsWordDocument(Stream stream)
+ {
+ try
+ {
+ using (var document = WordprocessingDocument.Open(stream, false))
+ {
+ return true;
+ }
+ }
+ catch
+ {
+ return false;
+ }
+ }
+
+ private string ExtractTextFromWord(Stream stream)
+ {
+ var text = "";
+
+ using (var document = WordprocessingDocument.Open(stream, false))
+ {
+ var body = document.MainDocumentPart.Document.Body;
+ text = body.InnerText;
+ }
+
+ return text;
+ }
+
+ private bool IsPowerPointDocument(Stream stream)
+ {
+ try
+ {
+ using (var presentation = PresentationDocument.Open(stream, false))
+ {
+ return true;
+ }
+ }
+ catch
+ {
+ return false;
+ }
+ }
+
+ private string ExtractTextFromPowerPoint(Stream stream)
+ {
+ var text = "";
+
+ using (var presentation = PresentationDocument.Open(stream, false))
+ {
+ var slideText = "";
+
+ foreach (var slidePart in presentation.PresentationPart.SlideParts)
+ {
+ var slide = slidePart.Slide;
+ var paragraphs = slide.Descendants();
+
+ foreach (var paragraph in paragraphs)
+ {
+ slideText += paragraph.InnerText + " ";
+ }
+ }
+
+ text = slideText.Trim();
+ }
+
+ return text;
+ }
+
+
+ protected async Task listFiles()
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ // Get the user
+ var user = (await authenticationStateTask).User;
+
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ var driveItem = await graphClient.Me.Drive.GetAsync();
+ driveId = driveItem.Id;
+
+ // List children in the drive
+ var files = await graphClient.Drives[driveId].Items["root"].Children.GetAsync();
+ Console.WriteLine("Getting files...");
+ data_response = files.Value;
+ StateHasChanged();
+
+ // The type of files is Microsoft.Graph.Models.DriveItem
+ }
+
+ private async Task WriteToOneNote()
+ {
+ if (summary == "")
+ {
+ noSummary = true;
+ return;
+ }
+ noSummary = false;
+ if (fileName == "")
+ {
+ fileName = "summary";
+ }
+ isWriting = true; // Set the flag to indicate that writing to OneNote is in progress
+ var user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+ var requestBody = new Notebook
+ {
+ //set the displayName to the name of the uploaded file witha unique ID
+ DisplayName = $"{fileName} {DateTime.Now.ToString("yyyyMMddHHmmss")}"
+ };
+ var result = await graphClient.Me.Onenote.Notebooks.PostAsync(requestBody);
+
+ // Get the ID of the newly created notebook
+ var notebookId = result.Id;
+ // create a new section in the notebook
+ var section = new OnenoteSection
+ {
+ DisplayName = "Summarised Notes"
+ };
+ var sectionResult = await graphClient.Me.Onenote.Notebooks[notebookId].Sections.PostAsync(section);
+ // Get the ID of the newly created section
+ var sectionId = sectionResult.Id;
+
+ // Create the title of the page
+ string pageTitle = $"Summary of {fileName}";
+
+ // Create the HTML body content
+ string htmlContent = "\n" +
+ "\n" +
+ " \n" +
+ " " + pageTitle + " \n" +
+ " \n" +
+ " \n" +
+ " \n" +
+ " " + summary + "
\n" +
+ " \n" +
+ "";
+
+ // Convert the HTML string to a byte array using UTF-8 encoding
+ byte[] contentBytes = Encoding.UTF8.GetBytes(htmlContent);
+
+ // Create multipart object with the relevant content
+ var multipartContent = new MultipartFormDataContent();
+ var htmlString = htmlContent;
+ var presentation = new StringContent(htmlString, Encoding.UTF8, "text/html");
+ multipartContent.Add(presentation, "Presentation");//needs a name
+
+ // We can add more httpcontent instance here if we wish to
+
+ // create a request information instance and make a request.
+ var requestInformation = graphClient.Me.Onenote.Sections[sectionId].Pages.ToGetRequestInformation();
+ requestInformation.Headers.Add("Content-Type", multipartContent.Headers.ContentType.ToString());
+ requestInformation.HttpMethod = Method.POST;
+ requestInformation.Content = await multipartContent.ReadAsStreamAsync();
+ var errorMapping = new Dictionary> {
+ {"4XX", ODataError.CreateFromDiscriminatorValue},
+ {"5XX", ODataError.CreateFromDiscriminatorValue},
+ };
+ var pageResult = await graphClient.RequestAdapter.SendAsync(requestInformation, OnenotePage.CreateFromDiscriminatorValue, errorMapping);
+ isWriting = false; // Set the flag to indicate that writing to OneNote is complete
+ Console.WriteLine("Done");
+ }
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor.css b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor.css
new file mode 100644
index 000000000..2b10d1a29
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor.css
@@ -0,0 +1,5 @@
+::deep > fluent-dialog::part(control) {
+ --dialog-width: 45%;
+ --dialog-height: 65%;
+ border: 2px ridge black;
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Teams.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Teams.razor
new file mode 100644
index 000000000..aef877dfa
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Teams.razor
@@ -0,0 +1,235 @@
+@*
+
+@page "/teams"
+@using System.Security.Authentication
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+
+
+
+
+
+ Teams
+
+
+
+
+ Sender
+ Message
+
+
+
+ @foreach(var teamsChat in chats)
+ {
+
+ @teamsChat
+
+ }
+
+
+
+
+
+ @if (TaskLists.Count != 0)
+ {
+ @foreach (var key in TaskLists.Keys)
+ {
+ @if (TaskLists[key].Value?.Count != 0){
+
+
@key.Split("|")[0]
+
+ @foreach (var item in TaskLists[key].Value)
+ {
+ string ListId = @key.Split("|")[1];
+ string TaskId = @item.Id;
+
+ if (item.Status == Microsoft.Graph.Models.TaskStatus.Completed)
+ {
+
+ @item.Title
+
+
+ { UnDoTask(ListId,TaskId); }">Undo
+ { DeleteTask(ListId,TaskId); }">Delete
+
+
+ }
+ else if (item.Status == Microsoft.Graph.Models.TaskStatus.NotStarted){
+
+ @item.Title
+
+
+ { CompleteTask(ListId,TaskId); }">Complete
+ { DeleteTask(ListId,TaskId); }">Delete
+
+
+ }
+
+ }
+
+ }
+
+ }
+ }
+ else
+ {
+
No To Do's
+ }
+
+
+
+
+
+
+
+
+@code{
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+
+ private GraphServiceClient? graphClient;
+ private IList chats = new List();
+ private string? dateTimeFormat;
+
+ Dictionary TaskLists = new Dictionary();
+
+ private IList toDos = new List();
+
+ private int count = 0;
+
+ protected override async Task OnInitializedAsync()
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ // Get the user
+ var user = (await authenticationStateTask).User;
+ var graphTimeZone = user.GetUserGraphTimeZone();
+ dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}";
+
+ // Calculate the start and end of the current week in user's time zone
+ var startOfWeek = GetUtcStartOfWeekInTimeZone(DateTime.Today, graphTimeZone);
+ var endOfWeek = startOfWeek.AddDays(7);
+
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ var chatPage = await graphClient.Me
+ .Chats
+ .GetAsync(config =>
+ {
+ config.QueryParameters.Top = 50;
+ //config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\"");
+ //config.QueryParameters.Select = new string[] { "subject", "sender"};
+ //config.QueryParameters.Orderby = new string[] { "receivedDateTime" };
+
+ });
+
+ chats = chatPage?.Value ?? new List();
+
+ await BeginToDos();
+ }
+
+ private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId)
+ {
+ // Time zone returned by Graph could be Windows or IANA style
+ // TimeZoneConverter can take either
+ TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId);
+
+ // Assumes Sunday as first day of week
+ int diff = System.DayOfWeek.Sunday - today.DayOfWeek;
+
+ // create date as unspecified kind
+ var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified);
+
+ // convert to UTC
+ return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone);
+ }
+
+
+ public async Task BeginToDos()
+ {
+ if(count > 0) {
+ //await Task.Delay(1000);
+ //Console.WriteLine("Access " + AccessToken);
+ //graphClient = clientFactory.GetAuthenticatedClient();
+
+ var toDoList = await graphClient.Me.Todo.Lists.GetAsync(
+ config=>{
+ config.QueryParameters.Top = 5;
+ }
+ );
+
+ toDos = toDoList?.Value ?? new List();
+
+ foreach(var item in toDos)
+ {
+ if (item == null)
+ {
+ throw new ArgumentNullException(nameof(item));
+ }
+ var resultTasks = await graphClient.Me.Todo.Lists[item.Id].Tasks.GetAsync();
+ var key = item.DisplayName + "|" + item.Id;
+ TaskLists[key] = resultTasks;
+ }
+
+ }
+ }
+
+
+
+ public async Task CompleteTask(string ListId, string TaskId){
+
+ var requestBody = new TodoTask
+ {
+ Status = Microsoft.Graph.Models.TaskStatus.Completed
+ };
+ var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody);
+
+ await BeginToDos();
+ Console.WriteLine(result.Status);
+ StateHasChanged();
+ //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true);
+
+ }
+
+ public async Task DeleteTask(string ListId, string TaskId){
+
+ await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].DeleteAsync();
+ await BeginToDos();
+ StateHasChanged();
+ //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true);
+
+ }
+
+ public async Task UnDoTask(string ListId, string TaskId){
+ var requestBody = new TodoTask
+ {
+ Status = Microsoft.Graph.Models.TaskStatus.NotStarted
+ };
+ var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody);
+
+ await BeginToDos();
+ Console.WriteLine(result.Status);
+ StateHasChanged();
+ //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true);
+ }
+} *@
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/TestAI.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/TestAI.razor
new file mode 100644
index 000000000..c05bf7510
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/TestAI.razor
@@ -0,0 +1,157 @@
+@page "/testai"
+
+@using System.Security.Authentication
+@using System.Text
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@using Microsoft.Extensions.Logging
+@using GrapeCity.Documents.Pdf
+@using Azure
+@using Azure.AI.OpenAI
+@using static System.Environment
+@using Microsoft.Fast.Components.FluentUI
+@using Microsoft.AspNetCore.Components.Web
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+
+
+Todo
+
+@*
+ Type your plans for the day...
+ *@
+
+
+
+
+Extract Text
+
+
+
@todoStart :: @todoEnd
+
+
+
+
+
+@code{
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+ private GraphServiceClient? graphClient;
+ private string? textValue;
+ private string[]? todolist;
+ private string? todoStart;
+ private string? todoEnd;
+ private string todoTasks;
+ private IList toDos = new List();
+ private string selectedList = "Tasks";
+ Dictionary TaskLists = new Dictionary();
+
+ public System.Security.Claims.ClaimsPrincipal? user { get; set; }
+
+ private OpenAIService? openAIService;
+
+ [Inject]
+ protected IAccessTokenProvider? AccessTokenProvider { get; set; }
+ protected string? AccessToken { get; private set; }
+
+ protected override async Task OnInitializedAsync()
+ {
+ var tokenResult = await AccessTokenProvider.RequestAccessToken();
+ if (tokenResult.TryGetToken(out var accessToken))
+ {
+ AccessToken = accessToken.Value;
+ }
+
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ //user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ openAIService = new OpenAIService(); // Create an instance of the 'OpenAIService'
+ var getLists = await graphClient.Me.Todo.Lists.GetAsync();
+ toDos = getLists?.Value ?? new List();
+
+ foreach(var item in toDos)
+ {
+ if (item == null)
+ {
+ throw new ArgumentNullException(nameof(item));
+ }
+ if (item.DisplayName != null){
+ TaskLists[item.DisplayName] = item.Id;
+ }
+ }
+ }
+
+
+ private void ExtractText()
+ {
+ string extractedText = textValue;
+ Console.WriteLine(extractedText);
+ }
+
+ private async Task ConvertToDo()
+ {
+ Console.WriteLine("Converting to do list to a schedule...");
+ //string agenda = "Wake up, make my bed and eat breakfast";
+ string prompt = $"Can you create a to-do list including start time and end time in the form of hh:mm - hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a '+' where the time is written first and the task is written next to it, separated by ':' and rewrite some tasks to make them clearer and more precise: \n {textValue}";
+ Console.Write($"Input: {prompt}\n");
+
+ var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ Console.Write($"Completion: {completion}\n");
+ }
+
+ private async Task ConvertTasks()
+ {
+ string completion = "+10:00 - 11:00> Reply to emails +11:00 - 12:00> Schedule a meeting +12:00 - 12:30> Grab morning coffee +12:30 - 13:30> Meet colleague at cafe for lunch +19:00 - 20:00> Meet friend for dinner";
+ todolist = completion.Split("+");
+ foreach (string todo in todolist)
+ {
+ if (todo.Length > 0)
+ {
+ todoStart = todo.Split("- ")[0];
+ todoEnd = todo.Split("- ")[1].Split("> ")[0];
+ todoTasks = todo.Split("- ")[1].Split("> ")[1];
+
+ DateTime startTime = DateTime.UtcNow; // Example DateTime object representing the start time
+
+ DateTimeTimeZone dateTimeTimeZone = new DateTimeTimeZone
+ {
+ DateTime = startTime.ToString("yyyy-MM-ddTHH:mm:ss"),
+ TimeZone = TimeZoneInfo.Utc.Id
+ };
+
+
+ var requestBody = new TodoTask
+ {
+ Title = todoTasks,
+ ReminderDateTime = dateTimeTimeZone,
+ };
+
+ var todoTask = await graphClient.Me.Todo.Lists[TaskLists[selectedList]].Tasks
+ .PostAsync(requestBody);
+
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ToDo.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ToDo.razor
new file mode 100644
index 000000000..1a806ad70
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ToDo.razor
@@ -0,0 +1,297 @@
+@page "/todo"
+
+@using System.Security.Authentication
+@using System.Text
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@using Microsoft.Extensions.Logging
+@using GrapeCity.Documents.Pdf
+@using Azure
+@using Azure.AI.OpenAI
+@using static System.Environment
+@using Microsoft.Fast.Components.FluentUI
+@using Microsoft.AspNetCore.Components.Web
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+
+
+
+
+Todo
+
+
+
+
+
+
+
+
+
+
+
+ Create To Do List
+
+
+ @if (creating){
+
+ }
+
+
+ @*
*@
+
+ @*
+
+
+ Task
+ Time
+ Confirm
+
+ @foreach (var key in TaskDict.Keys)
+ {
+ string time = key.Remove(key.Length - 1, 1);
+
+
+
+
+
+
+
+
+ { SendToDo(tasknew,timenew); }">Confirm
+
+
+ }
+
+
*@
+
+
+@* *@
+
+@* *@
+
+@* @for (int i = 0; i < TaskDict.Count; i++){
+ string time = TaskDict.Keys.ElementAt(i).Remove(TaskDict.Keys.ElementAt(i).Length - 1, 1);
+
+
+
+
+}
+ Print *@
+
+
+@code{
+
+ string? tasknew;
+
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+ private GraphServiceClient? graphClient;
+ private string? textValue;
+ private string[]? todolist;
+ private string? todoStart;
+ private string? todoEnd;
+ private string todoTasks;
+ private IList toDos = new List();
+ private string selectedList = "Tasks";
+
+ private string timenew = "09:00";
+ private TimeOnly startTime;
+ Dictionary TaskDict = new Dictionary();
+
+ Dictionary TaskLists = new Dictionary();
+
+ public System.Security.Claims.ClaimsPrincipal? user { get; set; }
+
+ private OpenAIService? openAIService;
+
+ public bool creating = false;
+
+ public List tas = new List();
+
+ [Inject]
+ protected IAccessTokenProvider? AccessTokenProvider { get; set; }
+ protected string? AccessToken { get; private set; }
+
+ public void Print(){
+ tas.Add(tasknew);
+ foreach (var item in tas){
+ Console.WriteLine(item);
+ }
+ }
+
+ protected override async Task OnInitializedAsync()
+ {
+ var tokenResult = await AccessTokenProvider.RequestAccessToken();
+ if (tokenResult.TryGetToken(out var accessToken))
+ {
+ AccessToken = accessToken.Value;
+ }
+
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ //user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+ openAIService = new OpenAIService(); // Create an instance of the 'OpenAIService'
+ var getLists = await graphClient.Me.Todo.Lists.GetAsync();
+ toDos = getLists?.Value ?? new List();
+
+ foreach(var item in toDos)
+ {
+ if (item == null)
+ {
+ throw new ArgumentNullException(nameof(item));
+ }
+ if (item.DisplayName != null){
+ TaskLists[item.DisplayName] = item.Id;
+ }
+ }
+ }
+
+
+ private void ExtractText()
+ {
+ string extractedText = textValue;
+ Console.WriteLine(extractedText);
+ }
+
+ private async Task ConvertToDo()
+ {
+ Console.WriteLine("Converting to do list to a schedule...");
+ //string agenda = "Wake up, make my bed and eat breakfast";
+ string prompt = $"Can you create a to-do list including start time in the form of hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise: \n {textValue}";
+ Console.Write($"Input: {prompt}\n");
+
+ var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ Console.Write($"Completion: {completion}\n");
+ }
+
+ private async Task ConvertTasks()
+ {
+ creating = true;
+ //string completion = "+10:00 - 11:00> Reply to emails +11:00 - 12:00> Schedule a meeting +12:00 - 12:30> Grab morning coffee +12:30 - 13:30> Meet colleague at cafe for lunch +19:00 - 20:00> Meet friend for dinner"; *@
+ string prompt = $"Can you create a to-do list including start time in the form of hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise: \n {textValue}";
+ //Console.Write($"Input: {prompt}\n");
+
+ var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+ //string completion = "+06:00 > Grab morning coffee +08:00 > Reply to emails +12:00 > Meet colleague at cafe for lunch +18:00 > Meet friend for dinner +20:00 > Schedule meeting with someone in Toronto";
+ Console.WriteLine(completion);
+ todolist = completion.Split("\n");
+ //todolist = completion.Split("+");
+
+ foreach (string todo in todolist)
+ {
+ if (todo.Length > 2)
+ {
+ todoStart = todo.Split(">")[0].Split("+")[1];
+ //todoStart = todo.Split(">")[0];
+ todoTasks = todo.Split(">")[1];
+
+ TaskDict[todoStart] = todoTasks;
+ await SendToDo(todoTasks, todoStart);
+ }
+ }
+ creating = false;
+
+ }
+
+ private async Task SendToDo(string todoTasks, string todoStart){
+ Console.WriteLine(todoStart);
+ Console.WriteLine("Sending");
+ DateTime now = DateTime.UtcNow.Date; // Get the current date in UTC
+
+ // Split the time string into hours and minutes
+ string[] timeParts = todoStart.Split(':');
+ int hours = int.Parse(timeParts[0]);
+ int minutes = int.Parse(timeParts[1]);
+
+ // Create a new DateTime object with the current date and the specified time
+ DateTime startTime = now.AddHours(hours).AddMinutes(minutes);
+
+ DateTimeTimeZone dateTimeTimeZone = new DateTimeTimeZone
+ {
+ DateTime = startTime.ToString("yyyy-MM-ddTHH:mm:ss"),
+ TimeZone = TimeZoneInfo.Local.Id
+ };
+
+ var requestBody = new TodoTask
+ {
+ Title = todoTasks,
+ ReminderDateTime = dateTimeTimeZone,
+ };
+
+ var todoTask = await graphClient.Me.Todo.Lists[TaskLists[selectedList]].Tasks
+ .PostAsync(requestBody);
+ Console.WriteLine("Sent");
+
+ }
+
+
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Transcript.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Transcript.razor
new file mode 100644
index 000000000..fa7bf2cea
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Transcript.razor
@@ -0,0 +1,305 @@
+@using System.Security.Authentication
+@using System.IO;
+@using Azure
+@using Azure.AI.OpenAI
+@using System.Text
+@using Microsoft.Graph.Beta
+
+
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject GraphSample.AI.OpenAIService OpenAIService
+
+@inject GraphSampleBeta.Graph.GraphClientFactoryBeta clientFactory
+
+
+
+
+
+
+ Transcript.Ai
+
+
+
+
+
+ @foreach (var eventResponse in data_response)
+ {
+ if ((bool)eventResponse.IsOnlineMeeting)
+ {
+ DateTime response = DateTime.Parse(@eventResponse.End.DateTime);
+ string readableEndDate = response.ToString("MMMM dd, yyyy HH:mm");
+
GetContent(eventResponse.OnlineMeeting.JoinUrl)">
+ @eventResponse.Subject ---
+ @readableEndDate
+
+
+ }
+ }
+
+
+
+
+
+
+
+
Summary:
+ @if (!string.IsNullOrEmpty(summary))
+ {
+
@summary
+ }
+
+
+
+
+ Magic
+
+
+
+
+
+
+
+
+
+@code{
+
+ [CascadingParameter]
+ protected Task? authenticationStateTask { get; set; }
+ private GraphServiceClient? graphClient;
+ protected string summary = "";
+
+ private FluentDialog? MyFluentDialog;
+ protected List data_response = new List();
+
+
+ protected async Task testing()
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ var user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+
+ var me = await graphClient.Me.GetAsync();
+
+ var user1 = await graphClient.Me.Events.GetAsync((requestConfiguration) =>
+ {
+ requestConfiguration.QueryParameters.Select = new string[] { "subject", "organizer", "isOnlineMeeting", "onlineMeeting,start,end" };
+ });
+
+ data_response = user1.Value;
+
+ }
+
+ protected override void OnAfterRender(bool firstRender)
+ {
+ if (firstRender)
+ MyFluentDialog!.Hide();
+ }
+
+
+ private async void OnOpen()
+ {
+ await testing();
+ MyFluentDialog!.Show();
+ }
+
+ private void OnDismiss(DialogEventArgs args)
+ {
+ if (args is not null && args.Reason is not null && args.Reason == "dismiss")
+ {
+ MyFluentDialog!.Hide();
+ }
+ }
+
+ protected async void GetContent(string meetingLink)
+ {
+ var originalString = "JoinWebUrl eq '1234'";
+ string modifiedLink = originalString.Replace("'1234'", $"'{meetingLink}'");
+
+ Console.WriteLine(modifiedLink);
+
+ var me = await graphClient.Me.GetAsync();
+
+ var meetingInfo = await graphClient.Me.OnlineMeetings.GetAsync((requestConfiguration) =>
+ {
+ requestConfiguration.QueryParameters.Filter = modifiedLink;
+ });
+
+ var transcripts2 = await graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts.GetAsync();
+
+ //Console.WriteLine(transcripts2.Value[0].Id);
+ //Console.WriteLine(transcripts2.Value[0].CreatedDateTime);
+
+ //Console.WriteLine(me.Id);
+ //Console.WriteLine(meetingInfo.Value[0].Id);
+ //Console.WriteLine(transcripts2.Value[0].Id);
+
+
+ var requestInformation = graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts[transcripts2.Value[0].Id].Content.ToGetRequestInformation();
+ requestInformation.UrlTemplate += "{?format}"; // Add the format query parameter to the template and query parameter.
+ requestInformation.QueryParameters.Add("format", "text/vtt");
+ var content2 = await graphClient.RequestAdapter.SendPrimitiveAsync(requestInformation);
+
+ var string2 = ConvertWebVttStreamToString(content2);
+
+ await SummarizeText(string2);
+ StateHasChanged();
+ //Console.WriteLine(summary);
+ }
+
+
+ protected string ConvertWebVttStreamToString(Stream? stream)
+ {
+ using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
+ {
+ return reader.ReadToEnd();
+ }
+ }
+
+ // Event handler for the "Summarize" button click
+ protected async Task SummarizeText(string content)
+ {
+
+ // Perform summarization until the overall summary is less than 3000 characters
+ var summaries = new List();
+ var overallSummary = "";
+
+ // Split the content into smaller chunks
+ var chunkSize = 750; // Adjust this value as per your model's character limit
+ var chunks = SplitContentIntoChunks(content, chunkSize);
+
+ // Perform summarization for each chunk
+ foreach (var chunk in chunks)
+ {
+ string prompt = $"Summarize the following text for an executive summary and in detail:\n\n{chunk}\n";
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+
+ summaries.Add(completion);
+ string finish = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish2);
+ }
+
+ // Combine the individual summaries into an overall summary
+ overallSummary = string.Join(" ", summaries);
+
+ //Break the loop if the overall summary exceeds 2500 characters
+ if (overallSummary.Length >= 5000)
+ {
+ summaries.Clear();
+
+ string prompt = $"This summary is slightly too long, please rewrite without losing any detail but in a more concise way:\n\n{overallSummary}\n";
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+
+ summaries.Add(completion);
+ string finish = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish2);
+ }
+
+ //Break the loop if the overall summary exceeds 2500 characters
+ else if (overallSummary.Length <= 500)
+ {
+ summaries.Clear();
+
+ string prompt = $"This summary is slightly too short, please rewrite without losing any detail but in a more easy to understand way, including any extra details that would help:\n\n{overallSummary}\n";
+
+ var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt);
+ var completion = completionsResponse.Value.Choices[0].Text;
+
+ summaries.Add(completion);
+ string finish = $"Keep summarising:\n\n{prompt}\n\nGave summary:\n\n{completion}";
+ var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish);
+ var completionFinish = completionsResponseFinish.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish);
+ string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}";
+ var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2);
+ var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text;
+
+ summaries.Add(completionFinish2);
+ }
+
+ overallSummary = string.Join(" ", summaries);
+ summaries.Clear();
+ summary = overallSummary;
+ Console.WriteLine("Generated AI summary");
+
+ }
+
+ // Helper method to split the content into smaller chunks
+ private IEnumerable SplitContentIntoChunks(string content, int chunkSize)
+ {
+ var sentences = content.Split('.', '!', '?');
+ var currentChunk = new StringBuilder();
+
+ foreach (var sentence in sentences)
+ {
+ if (currentChunk.Length + sentence.Length + 1 <= chunkSize)
+ {
+ currentChunk.Append(sentence).Append('.');
+ }
+ else
+ {
+ yield return currentChunk.ToString();
+ currentChunk.Clear().Append(sentence).Append('.');
+ }
+ }
+
+ if (currentChunk.Length > 0)
+ {
+ yield return currentChunk.ToString();
+ }
+ }
+
+
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/UniversalSearch.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/UniversalSearch.razor
new file mode 100644
index 000000000..bab85a477
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/UniversalSearch.razor
@@ -0,0 +1,414 @@
+@page "/Search"
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code{
+
+ [CascadingParameter]
+ protected Task? authenticationStateTask { get; set; }
+
+ protected string searchValue = string.Empty;
+ protected string DropDownStyle = string.Empty;
+ protected string ProgressStyle = "display: none;";
+ protected bool isSearching = false;
+ protected string InputStyle = "";
+
+ private GraphServiceClient? graphClient;
+ private List data_response = new List();
+
+
+ protected void HandleInputFocus()
+ {
+ InputStyle = "width:65vw;";
+ }
+
+
+ protected void MouseOut()
+ {
+ Console.WriteLine("mouse outside");
+ InputStyle = "";
+ data_response.Clear();
+ ToggleDropdown(false);
+ }
+
+ protected void ToggleDropdown(bool visibility)
+ {
+ if (visibility)
+ {
+ DropDownStyle = "display: block;";
+ }
+
+ else
+ {
+ DropDownStyle = "display: none;";
+ }
+ }
+
+ public class Author
+ {
+ public string Sender { get; }
+ public string Title { get; }
+ public string Url { get; }
+ public string App { get; }
+
+ public Author(string sender, string title, string webLink, string app)
+ {
+ Sender = sender;
+ Title = title;
+ Url = webLink;
+ App = app;
+ }
+ }
+
+
+ private void HandleInput(ChangeEventArgs e)
+ {
+ searchValue = e.Value.ToString();
+ data_response.Clear();
+ isSearching = false;
+ if (String.IsNullOrEmpty(searchValue))
+ {
+ ToggleDropdown(false);
+ }
+ }
+
+ private async Task HandleKeyPress(KeyboardEventArgs e)
+ {
+ if (e.Key == "Enter" && (isSearching == false))
+ {
+ // call the async function from here
+ ProgressStyle = "display: block;";
+ string searchTerm = searchValue;
+ searchTerm += "*";
+ isSearching = true;
+ data_response.Clear();
+ await CallApiAsync(searchTerm);
+ ToggleDropdown(true);
+ Console.WriteLine("Search value: " + searchTerm);
+ ProgressStyle = "display: none;";
+ }
+ }
+
+
+ protected async Task CallApiAsync(string searchTerm)
+ {
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+
+ // Get the user
+ var user = (await authenticationStateTask).User;
+
+ graphClient = clientFactory.GetAuthenticatedClient();
+
+
+ var requestBodyMail = new Microsoft.Graph.Search.Query.QueryPostRequestBody
+ {
+ Requests = new List
+ {
+ new SearchRequest
+ {
+ EntityTypes = new List
+ {
+ EntityType.Message,
+ },
+ Query = new SearchQuery
+ {
+ QueryString = searchTerm,
+ },
+ QueryAlterationOptions = new SearchAlterationOptions
+ {
+ EnableModification = true,
+ },
+ EnableTopResults = true,
+ },
+ },
+ };
+
+ var requestBodyTeams = new Microsoft.Graph.Search.Query.QueryPostRequestBody
+ {
+ Requests = new List
+ {
+ new SearchRequest
+ {
+ EntityTypes = new List
+ {
+ EntityType.ChatMessage,
+ },
+ Query = new SearchQuery
+ {
+ QueryString = searchTerm,
+ },
+ QueryAlterationOptions = new SearchAlterationOptions
+ {
+ EnableModification = true,
+ },
+ },
+ },
+ };
+
+ var requestBodyDrive = new Microsoft.Graph.Search.Query.QueryPostRequestBody
+ {
+ Requests = new List
+ {
+ new SearchRequest
+ {
+ EntityTypes = new List
+ {
+ EntityType.DriveItem,
+ },
+ Query = new SearchQuery
+ {
+ QueryString = searchTerm,
+ },
+ QueryAlterationOptions = new SearchAlterationOptions
+ {
+ EnableModification = true,
+ }
+ },
+ },
+ };
+
+
+ var batchRequestContent = new BatchRequestContent(graphClient);
+
+ var team = graphClient.Search.Query.ToPostRequestInformation(requestBodyTeams);
+ var mail = graphClient.Search.Query.ToPostRequestInformation(requestBodyMail);
+ var drive = graphClient.Search.Query.ToPostRequestInformation(requestBodyDrive);
+
+ var teamId = await batchRequestContent.AddBatchRequestStepAsync(team);
+ var mailId = await batchRequestContent.AddBatchRequestStepAsync(mail);
+ var driveId = await batchRequestContent.AddBatchRequestStepAsync(drive);
+
+ var returnedResponse = await graphClient.Batch.PostAsync(batchRequestContent);
+
+ // teams code
+ try
+ {
+
+ var user1 = await returnedResponse.GetResponseByIdAsync(teamId);
+ // check for hits is 0 or not then it is empty
+ if (user1?.Value?[0]?.HitsContainers?[0]?.Total == 0)
+ {
+ Console.WriteLine("Nothing found in Teams");
+ }
+
+ else
+ {
+ for (int i = 0; i < user1?.Value?[0]?.HitsContainers?[0]?.Hits?.Count; i++)
+ {
+ var searchItems = user1?.Value?[0]?.HitsContainers?[0]?.Hits?[i]?.Resource?.AdditionalData;
+
+ JsonElement fromMessage = (JsonElement)searchItems["from"];
+ string teamName = fromMessage.GetProperty("emailAddress").GetProperty("name").GetString();
+
+ data_response.Add(new Author(teamName, user1.Value[0].HitsContainers[0].Hits[0].Summary, searchItems["webLink"].ToString(), "Teams"));
+ Console.WriteLine(" found in teams");
+ }
+
+ }
+
+ }
+ catch (ServiceException ex)
+ {
+ Console.WriteLine("Get Teams failed" + ex);
+ }
+
+ // mail code
+ try
+ {
+ var user1 = await returnedResponse.GetResponseByIdAsync(mailId);
+
+ if (user1?.Value?[0]?.HitsContainers?[0]?.Total == 0)
+ {
+ Console.WriteLine("Nothing found in Mail");
+ }
+
+ else
+ {
+
+ for (int i = 0; i < user1?.Value?[0]?.HitsContainers?[0]?.Hits?.Count; i++)
+ {
+ var searchItems = user1?.Value?[0]?.HitsContainers?[0]?.Hits?[i]?.Resource?.AdditionalData;
+
+ JsonElement fromMessage = (JsonElement)searchItems["from"];
+ string messageName = fromMessage.GetProperty("emailAddress").GetProperty("name").GetString();
+
+ data_response.Add(new Author(messageName, searchItems?["subject"].ToString(), searchItems["webLink"].ToString(), "Outlook"));
+ Console.WriteLine(" found in outlook");
+ }
+ }
+
+
+ }
+ catch (ServiceException ex)
+ {
+ Console.WriteLine("Get Mail Failed" + ex);
+ }
+
+ // drive code
+ try
+ {
+ var user1 = await returnedResponse.GetResponseByIdAsync(driveId);
+
+ if (user1?.Value?[0]?.HitsContainers?[0]?.Total == 0)
+ {
+ Console.WriteLine("Nothing found in OneDrive");
+ }
+
+ else
+ {
+
+ for (int i = 0; i < user1?.Value?[0]?.HitsContainers?[0]?.Hits?.Count; i++)
+ {
+ var searchItems = user1?.Value?[0]?.HitsContainers?[0]?.Hits?[i]?.Resource?.AdditionalData;
+
+ JsonElement lastModifiedBy = (JsonElement)searchItems["lastModifiedBy"];
+ string oneDriveCreator = lastModifiedBy.GetProperty("user").GetProperty("displayName").GetString();
+
+ data_response.Add(new Author(oneDriveCreator, searchItems?["name"].ToString(), searchItems["webUrl"].ToString(), "OneDrive"));
+ Console.WriteLine("found in drive");
+ }
+ }
+
+ }
+
+ catch (ServiceException ex)
+ {
+ Console.WriteLine("Get OneDrive Failed" + ex);
+ }
+
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Weather.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Weather.razor
new file mode 100644
index 000000000..fd8c5bd2d
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Weather.razor
@@ -0,0 +1,91 @@
+@* @page "/weather"
+
+@using Newtonsoft.Json;
+
+Weather
+
+@weatherData
+
+@code {
+ private string weatherData;
+
+ protected override async Task OnInitializedAsync()
+ {
+ HttpClient client = new HttpClient();
+
+ var response = await client.GetAsync("https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/London?key=SWMLUUAV7UHPW5NZ6ZQQNK2G6");
+
+ response.EnsureSuccessStatusCode(); // Throw an exception if error
+
+ weatherData = await response.Content.ReadAsStringAsync();
+
+ dynamic weather = JsonConvert.DeserializeObject(weatherData);
+
+ // Loop through every "day" in the JSON and print a few details
+ foreach(var day in weather.days)
+ {
+ string weather_date = day.datetime;
+ string weather_desc = day.description;
+ string weather_tmax = day.tempmax;
+ string weather_tmin = day.tempmin;
+
+ Console.WriteLine(" Forecast for date: " + weather_date);
+ Console.WriteLine(" General conditions: " + weather_desc);
+ Console.WriteLine(" The high temperature will be " + weather_tmax);
+ Console.WriteLine(" The low temperature will be: " + weather_tmin);
+ }
+ }
+} *@
+
+
+
+@page "/weather"
+
+@using Newtonsoft.Json;
+@using System.Collections.Generic;
+@using System;
+@using System.Text;
+@using System.Net;
+
+@inject IJSRuntime JSRuntime
+
+Weather
+
+
+
+@code {
+ private List dates = new List();
+ private List tmax = new List();
+ private List tmin = new List();
+
+ protected override async Task OnInitializedAsync()
+ {
+ HttpClient client = new HttpClient();
+
+ var ip = await client.GetStringAsync("https://api.ipify.org");
+ string myIP = ip.ToString();
+ var loc = await client.GetStringAsync("https://api.ipgeolocation.io/ipgeo?apiKey=128faba391e648aba00fcf3acda914e3&ip="+ myIP);
+
+
+
+ dynamic location = JsonConvert.DeserializeObject(loc);
+ Console.WriteLine(location.city);
+
+
+ var response = await client.GetAsync("https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/"+ location.city +"?key=SWMLUUAV7UHPW5NZ6ZQQNK2G6");
+
+ response.EnsureSuccessStatusCode(); // Throw an exception if error
+
+ var weatherData = await response.Content.ReadAsStringAsync();
+
+ dynamic weather = JsonConvert.DeserializeObject(weatherData);
+
+ // Loop through every "day" in the JSON and extract temperature data
+ foreach (var day in weather.days)
+ {
+ dates.Add(day.datetime.ToString());
+ tmax.Add(day.tempmax.ToString());
+ tmin.Add(day.tempmin.ToString());
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Program.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Program.cs
new file mode 100644
index 000000000..ed81feeaa
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Program.cs
@@ -0,0 +1,53 @@
+using Microsoft.AspNetCore.Components.Web;
+using Microsoft.AspNetCore.Components.WebAssembly.Authentication;
+using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
+using GraphSample;
+using GraphSample.Graph;
+using GraphSample.Services;
+using GraphSampleBeta.Graph;
+using GraphSample.ReusableComponents;
+using Microsoft.JSInterop;
+using Blazored.Modal;
+using Microsoft.Fast.Components.FluentUI;
+
+var builder = WebAssemblyHostBuilder.CreateDefault(args);
+builder.RootComponents.Add("#app");
+builder.RootComponents.Add("head::after");
+
+// HttpClient for passing into GraphServiceClient constructor
+builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri("https://graph.microsoft.com") });
+
+builder.Services.AddMsalAuthentication(options =>
+{
+ //options.ProviderOptions.LoginMode = "Redirect";
+ var scopes = builder.Configuration.GetValue("GraphScopes");
+ if (string.IsNullOrEmpty(scopes))
+ {
+ Console.WriteLine("WARNING: No permission scopes were found in the GraphScopes app setting. Using default User.Read.");
+ scopes = "User.Read";
+ }
+
+ foreach (var scope in scopes.Split(';'))
+ {
+ Console.WriteLine($"Adding {scope} to requested permissions");
+ options.ProviderOptions.DefaultAccessTokenScopes.Add(scope);
+ }
+
+ builder.Configuration.Bind("AzureAd", options.ProviderOptions.Authentication);
+})
+.AddAccountClaimsPrincipalFactory();
+
+
+builder.Services.AddScoped();
+builder.Services.AddScoped();
+builder.Services.AddScoped();
+builder.Services.AddScoped();
+
+builder.Services.AddScoped();
+builder.Services.AddBlazoredModal();
+builder.Services.AddFluentUIComponents();
+
+LibraryConfiguration config = new(ConfigurationGenerator.GetIconConfiguration(), ConfigurationGenerator.GetEmojiConfiguration());
+builder.Services.AddFluentUIComponents(config);
+
+await builder.Build().RunAsync();
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/PublishProfiles/binderconnect - Zip Deploy.pubxml b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/PublishProfiles/binderconnect - Zip Deploy.pubxml
new file mode 100644
index 000000000..8f1f057de
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/PublishProfiles/binderconnect - Zip Deploy.pubxml
@@ -0,0 +1,16 @@
+
+
+
+ ZipDeploy
+ Release
+ Any CPU
+ /subscriptions/9eb1b5cd-a6e6-4ec7-a8d1-7830525b2e46/resourceGroups/SummerProject/providers/Microsoft.Web/sites/binderconnect
+ SummerProject
+ AzureWebSite
+ https://binderconnect.scm.azurewebsites.net/
+ https://binderconnect.azurewebsites.net
+ True
+ $binderconnect
+ <_SavePWD>True
+
+
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/launchSettings.json b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/launchSettings.json
new file mode 100644
index 000000000..66578a6e1
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/launchSettings.json
@@ -0,0 +1,29 @@
+{
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:17204",
+ "sslPort": 44309
+ }
+ },
+ "profiles": {
+ "GraphSample": {
+ "commandName": "Project",
+ "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
+ "applicationUrl": "https://localhost:7067;http://localhost:5230",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "dotnetRunMessages": true
+ },
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor
new file mode 100644
index 000000000..0b4f9709a
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor
@@ -0,0 +1,107 @@
+@using Microsoft.AspNetCore.Components.Forms
+@using SharedModels.Models
+
+
+
+
+
+@code {
+ public Form _form = new();
+
+ [CascadingParameter] BlazoredModalInstance BlazoredAssessmentModal { get; set; } = default!;
+
+ protected override void OnInitialized() => BlazoredAssessmentModal.SetTitle("Enter Custom Description");
+
+ private async Task SubmitForm()
+ {
+ await BlazoredAssessmentModal.CloseAsync(ModalResult.Ok(_form.customDescription));
+ }
+
+ private async Task Cancel() {
+ await BlazoredAssessmentModal.CancelAsync();
+ }
+
+ public class Form{
+ public string? customDescription { get; set; } = string.Empty;
+ }
+
+ }
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor
new file mode 100644
index 000000000..d70a7f6df
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor
@@ -0,0 +1,99 @@
+@using Microsoft.AspNetCore.Components.Forms
+@using SharedModels.Models
+
+
+
+
+
+
+ Company
+
+
+
+ Role
+
+
+
+
+ Submit
+
+
+
+
+@code {
+ private readonly TimelineBson _form = new();
+
+ [CascadingParameter] BlazoredModalInstance BlazoredModal { get; set; } = default!;
+
+ protected override void OnInitialized() => BlazoredModal.SetTitle("Enter a new application:");
+
+ private async Task SubmitForm() => await BlazoredModal.CloseAsync(ModalResult.Ok(_form));
+ private async Task Cancel() => await BlazoredModal.CancelAsync();
+
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor
new file mode 100644
index 000000000..fe61bbce4
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor
@@ -0,0 +1,145 @@
+@using Microsoft.AspNetCore.Components.Forms
+@using SharedModels.Models
+@using Microsoft.Fast.Components.FluentUI
+
+
+
+
+
+
+
+ Date
+
+
+
+
+
+ Status
+
+ Select Status
+ @foreach (var option in Enum.GetValues(typeof(AssessmentStatus)))
+ {
+ @option
+ }
+
+
+
+ Submit
+
+
+
+
+@code {
+ public Assessment _form = new();
+
+ [CascadingParameter] BlazoredModalInstance BlazoredAssessmentModal { get; set; } = default!;
+
+ protected override void OnInitialized(){
+ BlazoredAssessmentModal.SetTitle("Enter The Assessment Details");
+ _form.date = DateTime.Now.Date.AddHours(DateTime.Now.Hour + 1).AddMinutes(0).AddSeconds(0);
+ }
+
+ private async Task SubmitForm()
+ {
+ Console.WriteLine("Confirmed");
+ _form.date = _form.date.AddHours(1);
+ await BlazoredAssessmentModal.CloseAsync(ModalResult.Ok(_form));
+ }
+
+ private async Task Cancel() {
+ Console.WriteLine("Cancelled");
+ await BlazoredAssessmentModal.CancelAsync();
+ }
+}
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/InputPopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/InputPopup.razor
new file mode 100644
index 000000000..b23b0c7ea
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/InputPopup.razor
@@ -0,0 +1,141 @@
+@using Microsoft.AspNetCore.Components.Forms
+
+
+
+
+
+
+
+
+
+
+ Submit
+
+
+
+
+@code {
+
+ List searchResults = defaultResults();
+
+ static string defaultResultsText = "no results";
+ FluentSearch? searchTest;
+ string? searchValue = string.Empty;
+ static List defaultResults()
+ {
+ return new() { defaultResultsText };
+ }
+
+
+
+ void handleSearchInput(ChangeEventArgs args)
+ {
+ if (args is not null && !string.IsNullOrWhiteSpace(args.Value?.ToString()))
+ {
+ string searchTerm = args.Value.ToString()!.ToLower();
+
+ if (searchTerm.Length > 0)
+ {
+ List temp = allSenders.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList();
+ if (temp.Count() > 0)
+ {
+ searchResults = temp;
+ }
+ }
+ }
+ else
+ {
+ searchResults = defaultResults();
+ searchValue = string.Empty;
+ }
+ }
+
+ private readonly Form _form = new();
+
+ [CascadingParameter] BlazoredModalInstance BlazoredModal { get; set; } = default!;
+ [Parameter] public HashSet allSenders { get; set; }
+
+ protected override void OnInitialized() => BlazoredModal.SetTitle("Enter an Email Address");
+
+ private async Task SubmitForm() => await BlazoredModal.CloseAsync(ModalResult.Ok(searchValue));
+ private async Task Cancel() => await BlazoredModal.CancelAsync();
+
+ class Form
+ {
+ // take care of the nullability of the string public string Message;
+ public string Message { get; set; } = string.Empty;
+
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor
new file mode 100644
index 000000000..902d2fac9
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor
@@ -0,0 +1,83 @@
+@using Microsoft.AspNetCore.Components.Forms
+
+
+
+
+
+
+@code {
+ private readonly Form _form = new();
+ [CascadingParameter] BlazoredModalInstance BlazoredModal { get; set; } = default!;
+
+ protected override void OnInitialized() => BlazoredModal.SetTitle("Are you sure you want to delete a timeline?");
+
+ private async Task SubmitForm() => await BlazoredModal.CloseAsync(ModalResult.Ok());
+ private async Task Cancel() => await BlazoredModal.CancelAsync();
+
+ class Form { };
+
+}
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor
new file mode 100644
index 000000000..a01eb0c0f
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor
@@ -0,0 +1,99 @@
+@using Microsoft.AspNetCore.Components.Forms
+@using SharedModels.Models
+
+
+
+
+
+@code {
+ public Form _form = new();
+
+ [CascadingParameter] BlazoredModalInstance BlazoredAssessmentModal { get; set; } = default!;
+
+ [Parameter] public DateTimeOffset oldDate { get; set; }
+
+ protected override void OnInitialized()
+ {
+ _form.date = oldDate;
+ BlazoredAssessmentModal.SetTitle("Enter New Date");
+ }
+
+ private async Task SubmitForm()
+ {
+ await BlazoredAssessmentModal.CloseAsync(ModalResult.Ok(_form.date));
+ }
+
+ private async Task Cancel() {
+ await BlazoredAssessmentModal.CancelAsync();
+ }
+
+ public class Form{
+ public DateTimeOffset? date { get; set; } = null;
+ }
+
+ }
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Services/BackendApiService.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/BackendApiService.cs
new file mode 100644
index 000000000..38abcb505
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/BackendApiService.cs
@@ -0,0 +1,218 @@
+using System;
+using System.Text.Json;
+using SharedModels.Models;
+using MongoDB.Bson;
+using MongoDB.Bson.IO;
+using MongoDB.Bson.Serialization;
+using System.Net.Http.Json;
+using System.Threading.Tasks;
+
+namespace GraphSample.Services
+{
+ public class BackendApiService: IBackendApiService
+ {
+
+ private readonly HttpClient httpClient;
+
+ public BackendApiService(HttpClient httpClient)
+ {
+ this.httpClient = httpClient;
+ }
+
+ public async Task?> getUserTimelinesAsync(string username)
+ {
+ var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/get-timelines/{username}");
+
+ if (response.IsSuccessStatusCode)
+ {
+ string responseBody = await response.Content.ReadAsStringAsync();
+
+ List? timelines = BsonSerializer.Deserialize>(responseBody);
+ return timelines;
+ }
+ return null;
+ }
+
+
+ public async Task getUserTimelineAsync(string username, int timelineID)
+ {
+ var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/get-timeline/{username}/{timelineID}");
+ string responseBody = await response.Content.ReadAsStringAsync();
+
+ ApplicationTimeline timelines = BsonSerializer.Deserialize(responseBody);
+ return timelines;
+ }
+
+ public async Task createApplicant(string username)
+ {
+ var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/create-applicant/{username}");
+ return response.IsSuccessStatusCode;
+ }
+
+
+ public async Task addTimeline(string username, TimelineBson newTimelineBson)
+ {
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-timeline/{username}", newTimelineBson);
+ string responseBody = await response.Content.ReadAsStringAsync();
+ int newTimelineID = int.Parse(responseBody);
+ return response.IsSuccessStatusCode ? newTimelineID : -1;
+
+ }
+
+ public async Task updateReadEmailsDict(string username, ReadEmailsBson readEmails)
+ {
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-read-emails/{username}", readEmails);
+ return response.IsSuccessStatusCode;
+ }
+
+
+ public async Task removeTimeline(string username, int timelineID)
+ {
+
+ var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/remove-timeline/{username}/{timelineID}");
+
+ return response.IsSuccessStatusCode;
+
+ }
+
+
+ public async Task removeEmail(string email, string username, int timelineID)
+ {
+ var selectedEmail = new EmailBson { emailAddress = email, timelineID = timelineID };
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/remove-email/{username}", selectedEmail);
+
+ return response.IsSuccessStatusCode;
+
+ }
+
+ public async Task addEmail(string email, string username, int timelineID)
+ {
+ var selectedEmail = new EmailBson { emailAddress = email, timelineID = timelineID };
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-email/{username}", selectedEmail);
+
+ return response.IsSuccessStatusCode;
+ }
+
+ public async Task addEmails(List emails, string username, int timelineID)
+ {
+ var updatedEmails = new EmailsBson { emailAddresses = emails, timelineID = timelineID };
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-emails/{username}", updatedEmails);
+
+ return response.IsSuccessStatusCode;
+
+ }
+
+ public async Task removeAssessment(Assessment assessment, string username, int timelineID)
+ {
+ var selectedAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID};
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/remove-assessment/{username}", selectedAssessment);
+
+ return response.IsSuccessStatusCode;
+
+ }
+
+ public async Task addAssessment(Assessment assessment, string username, int timelineID)
+ {
+ var newAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID };
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-assessment/{username}", newAssessment);
+
+ return response.IsSuccessStatusCode;
+
+ }
+
+ public async Task addAssessments(List assessments, string username, int timelineID)
+ {
+ var newAssessments = new AssessmentsBson { assessments = assessments, timelineID = timelineID };
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-assessments/{username}", newAssessments);
+
+ return response.IsSuccessStatusCode;
+
+ }
+
+ public async Task updateAssessments(List assessments, string username, int timelineID)
+ {
+ var updatedAssessments = new AssessmentsBson { assessments = assessments, timelineID = timelineID };
+
+ Console.WriteLine("In backend API funciton");
+ foreach(var assessment in updatedAssessments.assessments){
+ Console.WriteLine(assessment.date);
+ }
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessments/{username}", updatedAssessments);
+
+ return response.IsSuccessStatusCode;
+
+ }
+
+ public async Task updateAssessmentStatus(Assessment assessment, string username, int timelineID, AssessmentStatus newStatus)
+ {
+ var newAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID};
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-status/{username}/{newStatus}", newAssessment);
+
+ return response.IsSuccessStatusCode;
+ }
+
+ public async Task updateAssessmentType(Assessment assessment, string username, int timelineID, AssessmentType newType, string? customDescription)
+ {
+ Assessment newAssessment = new Assessment{
+ date = assessment.date,
+ status = assessment.status,
+ taskId = assessment.taskId,
+ todoScheduled = assessment.todoScheduled,
+ type = newType,
+ customDescription = customDescription
+ };
+
+ var newAssessmentBson = new AssessmentBson { assessment = newAssessment, timelineID = timelineID};
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-type/{username}", newAssessmentBson);
+
+ return response.IsSuccessStatusCode;
+ }
+
+ public async Task updateAssessmentDate(string username, int timelineID, DateTimeOffset oldDate, DateTimeOffset newDate)
+ {
+
+ var datesBson = new DatesBson {
+ oldDate = oldDate,
+ newDate = newDate,
+ timelineID = timelineID
+ };
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-date/{username}/", datesBson);
+
+ return response.IsSuccessStatusCode;
+ }
+
+
+ public async Task updateAssessmentTodo(Assessment assessment, string username, int timelineID, bool newTodoStatus)
+ {
+ var newAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID };
+
+ var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-todo/{username}/{newTodoStatus}", newAssessment);
+
+ return response.IsSuccessStatusCode;
+ }
+
+ public async Task updateAlertLevel(int timelineID, string username, int newLevel)
+ {
+ var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/update-alert-level/{username}/{timelineID}/{newLevel}");
+
+ return response.IsSuccessStatusCode;
+ }
+
+ public async Task updateArchivedStatus(int timelineID, string username, bool newStatus)
+ {
+ var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/update-archived-status/{username}/{timelineID}/{newStatus}");
+
+ return response.IsSuccessStatusCode;
+ }
+ }
+}
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Services/IBackendApiService.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/IBackendApiService.cs
new file mode 100644
index 000000000..af7207330
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/IBackendApiService.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Threading.Tasks;
+using SharedModels.Models;
+
+namespace GraphSample.Services
+{
+ public interface IBackendApiService
+ {
+ public Task?> getUserTimelinesAsync(string username);
+ public Task getUserTimelineAsync(string username, int timelineID);
+ public Task removeEmail(string email, string username, int timelineID);
+ public Task addEmail(string email, string username, int timelineID);
+ public Task removeAssessment(Assessment assessment, string username, int timelineID);
+ public Task addAssessment(Assessment assessment, string username, int timelineID);
+ public Task addAssessments(List assessments, string username, int timelineID);
+ public Task updateAssessments(List assessments, string username, int timelineID);
+ public Task addTimeline(string username, TimelineBson newTimeLineBson);
+ public Task removeTimeline(string username, int timelineID);
+ public Task updateReadEmailsDict(string username, ReadEmailsBson readEmails);
+ public Task createApplicant(string username);
+ public Task updateAssessmentStatus(Assessment assessment, string username, int timelineID, AssessmentStatus newStatus);
+ public Task updateAssessmentType(Assessment assessment, string username, int timelineID, AssessmentType newType, string? customDescription);
+ public Task updateAssessmentDate(string username, int timelineID, DateTimeOffset oldDate, DateTimeOffset newDate);
+ public Task updateAssessmentTodo(Assessment assessment, string username, int timelineID, bool newTodoStatus);
+ public Task updateAlertLevel(int timelineID, string username, int newLevel);
+ public Task updateArchivedStatus(int timelineID, string username, bool newStatus);
+ public Task addEmails(List emails, string username, int timelineID);
+ }
+}
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/LoginDisplay.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/LoginDisplay.razor
new file mode 100644
index 000000000..859076a78
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/LoginDisplay.razor
@@ -0,0 +1,116 @@
+@using Microsoft.AspNetCore.Components.Authorization
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+@using System.Security.Authentication
+@using Microsoft.Graph
+@using Microsoft.AspNetCore.Components
+@using Microsoft.JSInterop
+
+@inject NavigationManager Navigation
+@inject SignOutSessionStateManager SignOutManager
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code{
+ private async Task BeginLogout(MouseEventArgs args)
+ {
+ await SignOutManager.SetSignOutState();
+ Navigation.NavigateToLogout("authentication/logout");
+ }
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor
new file mode 100644
index 000000000..82008bc2a
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor
@@ -0,0 +1,71 @@
+@inherits LayoutComponentBase
+
+@using System.Security.Authentication
+@using Microsoft.Graph
+@using Microsoft.Graph.Models
+@using TimeZoneConverter
+@inject GraphSample.Graph.GraphClientFactory clientFactory
+@inject NavigationManager NavigationManager
+@using Microsoft.AspNetCore.Components
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
+@using Microsoft.JSInterop
+@using Microsoft.Fast.Components.FluentUI
+
+@inject IJSRuntime JSRuntime
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @Body
+
+
+
+
+@code{
+ [CascadingParameter]
+ private Task? authenticationStateTask { get; set; }
+ private GraphServiceClient? graphClient;
+
+ [Inject]
+ protected IAccessTokenProvider AccessTokenProvider { get; set; }
+ protected string? AccessToken { get; private set; }
+ public int count = 0;
+ public System.Security.Claims.ClaimsPrincipal user { get; set; }
+
+
+ [JSInvokable]
+ private async Task GetAccessToken()
+ {
+ return this.AccessToken;
+ }
+
+ protected override async Task OnInitializedAsync()
+ {
+ var tokenResult = await AccessTokenProvider.RequestAccessToken();
+ if (tokenResult.TryGetToken(out var accessToken))
+ {
+ AccessToken = accessToken.Value;
+ count += 1;
+ }
+ if (authenticationStateTask == null)
+ {
+ throw new AuthenticationException(
+ "Unable to access authentication state");
+ }
+ user = (await authenticationStateTask).User;
+ graphClient = clientFactory.GetAuthenticatedClient();
+ await JSRuntime.InvokeVoidAsync("mgtInterop.configureProvider", AccessToken);
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor.css b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor.css
new file mode 100644
index 000000000..cb61f7e89
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor.css
@@ -0,0 +1,26 @@
+.page {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+}
+
+
+.content {
+ width: 100%;
+}
+
+.outerSearch {
+ /* put this search bar in line with the nav bar */
+ position: fixed;
+ top: 20px;
+ left: 11rem;
+ z-index: 4;
+}
+
+.seperateNavBar {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ z-index: 3;
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/RedirectToLogin.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/RedirectToLogin.razor
new file mode 100644
index 000000000..66133c3c3
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/RedirectToLogin.razor
@@ -0,0 +1,11 @@
+
+
+@inject NavigationManager Navigation
+
+@code {
+ protected override void OnInitialized()
+ {
+ Navigation.NavigateTo($"authentication/login?returnUrl={Uri.EscapeDataString(Navigation.Uri)}");
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/_Imports.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/_Imports.razor
new file mode 100644
index 000000000..9b0f9a62a
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/_Imports.razor
@@ -0,0 +1,22 @@
+@using System.Net.Http
+@using System.Net.Http.Json
+@using System
+@using System.Text.Json;
+@using System.Security.Authentication
+@using TimeZoneConverter
+@using Microsoft.AspNetCore.Components.Authorization
+@using Microsoft.AspNetCore.Components.Forms
+@using Microsoft.AspNetCore.Components.Routing
+@using Microsoft.AspNetCore.Components.Web
+@using Microsoft.AspNetCore.Components.Web.Virtualization
+@using Microsoft.AspNetCore.Components.WebAssembly.Http
+@using Microsoft.JSInterop
+@using GraphSample
+@using GraphSample.Shared
+@using Microsoft.Fast.Components.FluentUI
+@using Blazored.Modal
+@using Blazored.Modal.Services
+@using GraphSample.AI
+
+@using Microsoft.AspNetCore.Components.Authorization
+@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.Core.dll
new file mode 100644
index 000000000..2c8f63787
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.SecurityToken.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.SecurityToken.dll
new file mode 100644
index 000000000..a97c0efa8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.SecurityToken.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.OpenAI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.OpenAI.dll
new file mode 100644
index 000000000..c5019ede1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.OpenAI.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.TextAnalytics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.TextAnalytics.dll
new file mode 100644
index 000000000..17936adff
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.TextAnalytics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.Core.dll
new file mode 100644
index 000000000..730ec4b53
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AzureOpenAIClient.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AzureOpenAIClient.Http.dll
new file mode 100644
index 000000000..c86ec00ff
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AzureOpenAIClient.Http.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BlazorInputFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BlazorInputFile.dll
new file mode 100644
index 000000000..53c55570c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BlazorInputFile.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Blazored.Modal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Blazored.Modal.dll
new file mode 100644
index 000000000..8b8bad035
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Blazored.Modal.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BouncyCastle.Crypto.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BouncyCastle.Crypto.dll
new file mode 100644
index 000000000..9265a5833
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BouncyCastle.Crypto.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ChartJSCore.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ChartJSCore.dll
new file mode 100644
index 000000000..79fa1fa95
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ChartJSCore.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DnsClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DnsClient.dll
new file mode 100644
index 000000000..39aa546ad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DnsClient.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DocumentFormat.OpenXml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DocumentFormat.OpenXml.dll
new file mode 100644
index 000000000..1857a116d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DocumentFormat.OpenXml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Imaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Imaging.dll
new file mode 100644
index 000000000..ae466c458
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Imaging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Pdf.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Pdf.dll
new file mode 100644
index 000000000..92224c755
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Pdf.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.dll
new file mode 100644
index 000000000..4087361e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.pdb
new file mode 100644
index 000000000..758251dcf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.pdb differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.staticwebassets.runtime.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.staticwebassets.runtime.json
new file mode 100644
index 000000000..dfa257c8b
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.staticwebassets.runtime.json
@@ -0,0 +1 @@
+{"ContentRoots":["C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\","C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\bundle\\","C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"icon-192.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"icon-192.png"},"Patterns":null},"identityTeams.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"identityTeams.js"},"Patterns":null},"img":{"Children":{"bindercoloured.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/bindercoloured.png"},"Patterns":null},"binder_RGB_logotype_white_transparent_1135x512.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/binder_RGB_logotype_white_transparent_1135x512.png"},"Patterns":null},"nexus.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/nexus.png"},"Patterns":null},"no-profile-photo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/no-profile-photo.png"},"Patterns":null},"openai-white-logomark.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/openai-white-logomark.png"},"Patterns":null}},"Asset":null,"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"intro.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"intro.jpg"},"Patterns":null},"manifest.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"manifest.json"},"Patterns":null},"mgtInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"mgtInterop.js"},"Patterns":null},"service-worker.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"service-worker.js"},"Patterns":null},"service-worker.published.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"service-worker.published.js"},"Patterns":null},"teamHelper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"teamHelper.js"},"Patterns":null},"TeamsLogin.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"TeamsLogin.js"},"Patterns":null},"windowResizeInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"windowResizeInterop.js"},"Patterns":null},"_content":{"Children":{"Microsoft.Fast.Components.FluentUI":{"Children":{"Components":{"Children":{"Anchor":{"Children":{"FluentAnchor.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/Anchor/FluentAnchor.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null},"DataGrid":{"Children":{"FluentDataGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/DataGrid/FluentDataGrid.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null},"HorizontalScroll":{"Children":{"FluentHorizontalScroll.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"reboot.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/reboot.css"},"Patterns":null},"variables.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/variables.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"CacheStorageAccessor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/CacheStorageAccessor.js"},"Patterns":null},"web-components.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/web-components.js"},"Patterns":null},"web-components.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/web-components.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Fast.Components.FluentUI.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Microsoft.Fast.Components.FluentUI.lib.module.js"},"Patterns":null},"icons":{"Children":{"PresenceAvailable":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceAway":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceBusy":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceDND":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Add":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Alert":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertSnooze":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBidirectionalUpDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowClockwise":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCounterclockwise":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowNext":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowPrevious":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepIn":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepInLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepInRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepOut":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSync":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrending":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Attach":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Backpack":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Balloon":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BezierCurveSquare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Briefcase":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Call":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallMissed":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretDownRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelShare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Chat":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatEmpty":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxUnchecked":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkmark":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Circle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleHalfFill":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleLine":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clock":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Comment":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentAdd":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeftTempLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeftTempRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRightTempLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRightTempRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentCheckmark":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Couch":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cube":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Delete":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dentist":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dismiss":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Doctor":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drop":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EqualOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ErrorCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eye":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Filter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodCake":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Glance":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceDefault":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceDefault/12_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceDefault/12_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceHorizontal":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Globe":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HatGraduation":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Heart":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Home":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Important":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Info":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Link":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkSquare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Location":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrow":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockClosed":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mail":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailUnread":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mention":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MyLocation":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Notepad":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Organization":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pause":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"People":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Phone":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pin":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Play":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Premium":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Prohibited":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QuestionCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Record":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RecordStop":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RectangleLandscape":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Reward":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Ribbon":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanDash":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Search":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shield":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlashForward":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitHorizontal":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitVertical":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Square":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareShadow":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Star":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarHalf":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarOneQuarter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarThreeQuarter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Status":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sticker":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Subtract":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tablet":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tent":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Text":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/16_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/16_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextT":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Toolbox":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Triangle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPerson":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Warning":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Accessibility":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSubtractCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AirplaneTakeOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertBadge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertUrgent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignBottom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignCenterHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignCenterVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeBottom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeBottom/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeBottom/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeLeft/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeLeft/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeRight/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeRight/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeTop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeTop/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeTop/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStretchHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStretchVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignTop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalCat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalDog":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalRabbit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalTurtle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ApprovalsApp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Apps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsAddIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Archive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBounce":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDownload":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowFitIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookDownRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMaximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMinimize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowParagraph":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedoTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedoTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeat1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeatAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeatAllOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReply":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReplyAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReplyDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRotateClockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowShuffle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowShuffleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortDownLines":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSprint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepOver":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndoTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndoTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpload":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoSum":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Backspace":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Beach":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Beaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BinderTriangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bluetooth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Blur":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Board":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardHeart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bookmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookNumber":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowlChopsticks":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Box":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Braces":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesCheckmark/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesCheckmark/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesDismiss/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesDismiss/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Branch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchCompare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchFork":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BriefcaseMedical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BriefcaseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrightnessHigh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrightnessLow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BroadActivityFeed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Broom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bug":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Building":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBank":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBankLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingFactory":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingHome":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingPeople":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingShop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingSkyscraper":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Button":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Calculator":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalculatorMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Calendar3Day":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowCounterclockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAssistant":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarCancel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarDataBar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarEmpty":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPattern":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPhone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarReply":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarToday":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWorkWeek":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallEnd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallInbound":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallOutbound":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallPark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallTransfer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Camera":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraDome":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CatchUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CD":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CD/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CD/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Certificate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Channel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatArrowDoubleBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatBubblesQuestion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatCursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMultipleHeart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxChecked":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxCheckedSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxIndeterminate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkStarburst":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkUnderlineCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDownUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronUpDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"City":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Classification":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClearFormatting":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clipboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clipboard3Day":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardBulletListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardBulletListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardCode":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardLetter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMonth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardNote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardPaste":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTask":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockAlarm":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClosedCaption":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClosedCaptionOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cloud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArchive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudWords":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clover":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Code":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeBlock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeFS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeFSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeJS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeJSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodePY":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePY/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePY/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodePYRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePYRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePYRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeRB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeRBRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRBRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRBRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTextOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextOff/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextOff/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeVB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeVBRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVBRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVBRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Color":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorFill":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorLine":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnSingle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnSingleCompare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMention":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultipleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultipleLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Communication":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CompassNorthwest":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Compose":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cone/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cone/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ConferenceRoom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Connected":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Connector":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardGroup":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContractDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Copy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopyArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Crop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Crown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeQuick":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CurrencyDollarEuro":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CurrencyDollarRupee":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorHover":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorHoverOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarHorizontalDescending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontalDescending/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontalDescending/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalAscending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAscending/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAscending/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Database":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseStack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseStack/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseStack/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataHistogram":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataTrending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesignIdeas":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Desktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopCursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopKeyboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopMac":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopPulse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceEQ":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceMeetingRoom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceMeetingRoomRemote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diamond":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Directions":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DividerShort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DividerTall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Document":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Document100":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListCube":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCatchUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentContract/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentContract/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCopy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCSS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentData":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDataLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFooter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderFooter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJAVA":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMention":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentNumber1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentNumber1/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentNumber1/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageBeaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageBeaker/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageBeaker/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPDF":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPY":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPY/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPY/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentRB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSASS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSplitHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSplitHintOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTarget":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTarget/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTarget/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentVB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentVB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentVB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentYML":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Door":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drafts":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBeer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkCoffee":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkMargarita":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkWine":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dumbbell":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Earth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EarthLeaf":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Edit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Emoji":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiAngry":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiHand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiLaugh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiMeh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSad":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ErrorCircleSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExpandUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExpandUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eyedropper":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeTracking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeTrackingOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FastForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fax":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Feed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Filmstrip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilmstripPlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilmstripSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fire":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagPride":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/48_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flash":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashFlow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flashlight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlipHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlipVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fluid":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Folder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderGlobe":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderOpenVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderZip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontSpaceTrackingIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontSpaceTrackingOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Food":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodChickenLeg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodEgg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodToast":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS30":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS60":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Frame":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FStop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FullScreenMaximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FullScreenMinimize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Games":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GanttChart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gavel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GavelProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GIF":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gift":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceHorizontalSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/16_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/16_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Glasses":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlassesOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Grid":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridKanban":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guest":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guitar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandDraw":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandLeftChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Handshake":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandWave":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HardDrive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HD":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Headset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartBroken":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartCircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Highlight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HighlightAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"History":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Hourglass":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassHalf":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassOneQuarter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassThreeQuarter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Image":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageAltText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageBorder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageMultipleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageStack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageTable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImmersiveReader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkingTool":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkingToolAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/32_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InPrivateAccount":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"IoT":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"IoTAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"JavaScript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Key":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Keyboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardMouse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardMouse/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardMouse/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardShift":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardShiftUppercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyCommand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Laptop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaptopDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaptopShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafOne":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafThree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafTwo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Library":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lightbulb":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbFilament":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Likert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal4":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal4Search":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"List":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBarTree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBarTreeOffset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocalLanguage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/20_f.svg"},"Patterns":null},"ja":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockClosedKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Luggage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAllRead":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowDoubleBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAttach":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInbox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailOpenPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailPause":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailRead":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailReadMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailTemplate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Map":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MapDrive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormatProfessional":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormula":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathSymbols":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Maximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MeetNow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Megaphone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneLoud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Memory":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Memory/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Memory/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Merge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mic":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicPulse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicPulseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Molecule":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Money":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoviesandTV":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MultiselectLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MultiselectRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNoteOff2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Navigation":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NetworkAdapter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkAdapter/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkAdapter/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"New":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"News":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Next":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Note":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NoteAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Notebook":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotepadEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotepadPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotePin":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle3":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle4":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle5":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbol":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Open":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Options":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Oval":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PageFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrush":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBucket":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftExpand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftFocusRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/28_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeaderAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeaderKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftTextAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftTextDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Password":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Payment":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCommunity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeam":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamDelete":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleToolbox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAvailable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonBoard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonDelete":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonFeedback":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLightning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonNote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStanding":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStanding/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStanding/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSupport":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonWalking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneEraser":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLaptop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpanIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpanOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPicture":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPictureEnter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPictureExit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pill":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PinOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayCircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Poll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PollHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PremiumPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PreviewLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Previous":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Print":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProhibitedMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreenDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProtocolHandler":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzleCube":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Puzzlepiece":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Question":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadioButton":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadioButtonOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButtonOff/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButtonOff/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RAM":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RatingMature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadAloud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingListAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Receipt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptMoney":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Remote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rename":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrderDotsHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrderDotsVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeLarge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeSmall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rewind":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rhombus":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RoadCone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rocket":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Ruler":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Run":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Save":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Savings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScaleFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scan":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanCamera":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanThumbUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanThumbUpOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Script":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Script/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Script/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchVisual":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Send":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendBeaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SerialPort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Server":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerSurface":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurface/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurface/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerSurfaceMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurfaceMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurfaceMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServiceBell":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Settings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeExclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeIntersect":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shapes":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeUnion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Share":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonOverlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonOverlayInside":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonP":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenStop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldGlobe":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldKeyhole":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldQuestion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldTask":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shifts":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsActivity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Signature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SIM":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideEraser":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideRecord":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Snooze":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Space3D":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SparkleCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker0":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerMute":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sport":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportSoccer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SprayCan":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SprayCan/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SprayCan/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarLineHorizontal3":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Step":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Step/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Step/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Steps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StoreMicrosoft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Subtitles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircleArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircleArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractSquare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Symbols":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SyncOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tab":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopArrowClockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabInPrivate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Table":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableBottomRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCalculator":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellsMerge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellsSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDeleteColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDeleteRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRowTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRowTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableInsertColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableInsertRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLightning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveAbove":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveBelow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableResizeColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableResizeRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleExclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleInclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackAbove":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackBelow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSwitch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tabs":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagLockAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/32_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Target":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TargetArrow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TargetEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Temperature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TetrisApp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenterRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenterRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRightRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRightRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBold":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"de":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ms":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"no":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"pt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr-cyrl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr-latn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignMiddle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListTree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseLowercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseTitle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseUppercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextChangeCase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextClearFormatting":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/24_f.svg"},"Patterns":null},"ko":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/ko/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/20_f.svg"},"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColorAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDensity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextExpand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextField":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFont":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFontInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFontSize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarWand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextItalic":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"de":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"eu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"no":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraph":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ja":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirectionLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirectionRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquareLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquareRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextQuote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSortAscending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fi":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"se":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSortDescending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fi":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"se":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextStrikethrough":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSubscript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSuperscript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextTTag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextTTag/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextTTag/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderline":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"eu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"pt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderlineCharacterU":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWrap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWrapOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ThumbDislike":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ThumbLike":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TicketDiagonal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Translate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TranslateAuto":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TranslateOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Trophy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrophyLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrophyOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TV":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TVUSB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Vault":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleBicycle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleBus":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCab":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarCollision":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarParking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileLTRClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleShip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleSubway":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruck":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckProfile":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoBackgroundEffect":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoBackgroundEffectHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClipMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClipOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Voicemail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wallet":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WalletCreditCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Water":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherMoon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherMoonOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherPartlyCloudyDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunny":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WebAsset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Window":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowApps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDevEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDevTools":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowNew":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowWrench":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wrench":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxController":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AccessibilityCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AccessTime":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Airplane":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Album":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlbumAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertOn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignEndHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignEndVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceAroundHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceAroundVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceBetweenHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceBetweenVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceEvenlyHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceEvenlyVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceFitVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceFitVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceFitVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStartHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStartVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalRabbitOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppGeneric":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppRecent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsListDetail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppTitle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitContent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeightDotted":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeightIn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitWidthDotted":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBetweenDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBetweenUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowClockwiseDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCollapseAll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCounterclockwiseDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEject/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEject/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnterLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnterUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForwardDownLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForwardDownPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowImport":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowJoin":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowJoin/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowJoin/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMaximizeVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMinimizeVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMove":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMoveInward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMoveInward/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMoveInward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowOutlineUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRotateCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRouting":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRoutingRectangleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowsBidirectional":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSquareDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingSparkle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingWrench":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnBidirectionalDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnUpDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowWrap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrap/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrap/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowWrapOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrapOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrapOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AttachArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AttachText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Autocorrect":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoFitHeight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoFitWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BackpackAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Badge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BarcodeScanner":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery0":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery6":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery7":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery8":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery9":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryCharge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatterySaver":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BinFull":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothDisabled":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothSearching":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardGames":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardGames/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardGames/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Book":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookArrowClockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookCoins":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookCompass":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookContacts":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDefault":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDefault/20_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookExclamationMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookInformation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookLetter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpenGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpenMicrophone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookQuestionMarkRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookTemplate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTemplate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTemplate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookTheta":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottomDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottomThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderLeftRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderNone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderOutside":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderOutsideThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottomDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottomThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BotAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BotSparkle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowlSalad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowTie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesVariable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrainCircuit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchForkHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchForkLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchRequest":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchRequest/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchRequest/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BreakoutRoom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BubbleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BubbleMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BubbleMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BugArrowCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugArrowCounterclockwise/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugArrowCounterclockwise/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BugProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugProhibited/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBankToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingGovernment":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingLighthouse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingLighthouse/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingLighthouse/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingTownhouse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalculatorArrowClockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAgenda":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarChat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMention":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMention/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMention/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMonth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWeekNumbers":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWeekStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallConnecting":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallConnecting/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallConnecting/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallExclamation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallExclamation/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallExclamation/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenError/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenError/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenQuestionMark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenQuestionMark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CardUI":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cast":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular3G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular4G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular5G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CenterHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CenterVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChartMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChartPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatHelp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMail/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMail/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Check":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkNote/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Chess":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chess/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chess/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleEraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEraser/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleMultipleSubtractCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleMultipleSubtractCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleMultipleSubtractCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleSmall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Class":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardDataBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskListLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskListRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockArrowDownload":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDatabase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDatabase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDesktop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDesktop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudFlow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTextEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Collections":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CollectionsAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorBackground":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Column":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Column/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Column/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnArrowRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnArrowRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnDoubleCompare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnDoubleCompare/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnDoubleCompare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnTriple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnTripleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Comma":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommunicationPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentView":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentViewGallery":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ControlButton":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ConvertRange":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cookies":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopyAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopySelect":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropInterim":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropInterimOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeLink/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeRotate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeRotate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeRotate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeTree":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorClick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DarkTheme":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataArea":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLightning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabasePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabasePlugConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePlugConnected/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePlugConnected/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSwitch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSwitch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWarning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWarning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseWindow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWindow/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWindow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataFunnel":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataPie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataScatter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataSunburst":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataTreemap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataWaterfall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataWhisker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DecimalArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DecimalArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteLines/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteLines/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopFlow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSignal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSpeakerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopTower":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardLightningToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightningToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightningToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diagram":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dialpad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DialpadOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dishwasher":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diversity":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DockRow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBorder":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBorderPrint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBriefcase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentChevronDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentEndnote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFlowchart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFooterDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeartPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJavascript":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentKey/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentKey/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscape":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeData":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeSplitHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMargins":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultiplePercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultipleProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultipleSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageColumns":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBreak":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageNumber":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPrint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueue":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueueAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueueMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSave":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableTruck":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextExtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleSwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleSwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleTapSwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleTapSwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerArrowDownload":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerSubtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawShape":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBottle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBottleOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkToGo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DriveTrain":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenClosedAlert":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenGroup":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenHeader":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenMirror":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenPagination":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSpan":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenStatusBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenTablet":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenUpdate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenVerticalScroll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenVibrate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dust":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Elevator":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSadSlight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSmileSlight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSurprise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Engine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EqualCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserMedium":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserSegment":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserSmall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserTool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExtendedDock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyedropperOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FastAcceleration":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fingerprint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fireplace":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FixedWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagCheckered":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagCheckered/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagCheckered/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashAuto":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashlightOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flowchart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlowchartCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fluent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderBriefcase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderBriefcase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderBriefcase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderPeople":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontDecrease":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontIncrease":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodApple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodCarrot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodFish":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodGrains":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodPizza":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Form":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FormMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FormNew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS120":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS240":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS960":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gas":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GasPump":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gather":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gather/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gather/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gauge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GaugeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GaugeAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GaugeAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gesture":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeLocation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeProhibited/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeSurface":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridDots":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Group":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupReturn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guardian":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GuestAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandOpenHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandRightOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRightOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRightOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HDR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HDROff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Headphones":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadphonesSoundWave":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadsetAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadsetVR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HighlightLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightLink/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HistoryDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Icons":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowBack":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageReflection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageShadow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Incognito":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InfoShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InfoShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InfoShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStroke":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStrokeArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStrokeArrowUpDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Insert":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Insert/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Insert/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSChevronRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSChevronRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSChevronRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Joystick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Joystick/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Joystick/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Keyboard123":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardDock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutFloat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutOneHandedLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutResize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardTab":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaserTool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaserTool/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaserTool/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lasso":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LauncherSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Layer":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LayerDiagonal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LayerDiagonalPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonalPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonalPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LearningApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Line":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal1/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal1/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal3/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal3/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal5Error":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5Error/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5Error/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineStyle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineThickness":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Live":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LiveOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationLive":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lottery":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAllUnread":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllUnread/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllUnread/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxAll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Markdown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Markdown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Markdown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MatchAppLayout":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormatLinear":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MentionArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionArrowDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MentionBrackets":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionBrackets/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionBrackets/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Microscope":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Midi":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MobileOptimized":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mold":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyCalculator":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyHand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneySettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneySettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneySettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainLocationBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainLocationTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainTrail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_2x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_5x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_8x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier2x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier_5x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote2Play":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2Play/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2Play/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNoteOff1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationUnread":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NetworkCheck":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookEye":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookEye/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookEye/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSectionArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSubsection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NoteEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbolDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbolSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OrganizationHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OrganizationHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OrganizationHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Orientation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Oven":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrushArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrushArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pair":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottom/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottom/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottomContract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomContract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomContract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottomExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightCursor":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelSeparateWindow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelSeparateWindow/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelSeparateWindow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelTopContract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopContract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopContract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelTopExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Patch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Patient":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pentagon":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleAudience":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCommunityAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleQueue":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person6":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAccounts":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDesktop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDesktop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonKey/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonKey/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLightbulb":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonPill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonRunning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRunning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRunning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStarburst":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonVoice":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonWrench":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWrench/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWrench/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDesktopAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktopAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktopAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLinkSetup":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhonePageHeader":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhonePagination":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneScreenTime":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneShake":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneStatusBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneTablet":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneUpdate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneUpdateCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneVerticalScroll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneVibrate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhotoFilter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pi":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pipeline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelineAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelineArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelinePlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelinePlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelinePlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pivot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlantGrass":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlantRagweed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayingCards":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayingCards/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayingCards/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlaySettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlaySettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlaySettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnectedAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnectedCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugDisconnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PointScan":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortHDMI":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortMicroUSB":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortUSBA":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortUSBC":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionBackward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionToBack":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionToFront":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Power":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Predictions":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Presenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenterOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PrintAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Production":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProductionCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProhibitedNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedNote/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PulseSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzleCubePiece":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCubePiece/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCubePiece/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzlePieceShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzlePieceShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzlePieceShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QRCode":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QuizNew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Radar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Radar/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Radar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadarCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadarRectangleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarRectangleMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarRectangleMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RatioOneToOne":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingModeMobile":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RealEstate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptBag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RectanglePortraitLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectanglePortraitLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectanglePortraitLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Recycle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Replay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Replay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Replay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Resize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeTable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RotateLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RotateRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Router":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RowTriple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RSS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sanitize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveImage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScaleFill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scales":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanObject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanType":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTypeCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTypeOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scratchpad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenCut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenCut/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenCut/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Screenshot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchInfo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectAllOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectAllOn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkewDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkewEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SettingsChat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SettingsCogMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareAndroid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareCloseTray":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareiOS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldBadge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldDismissShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismissShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismissShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldPersonAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPersonAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPersonAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shifts30Minutes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsAvailability":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsOpen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsTeam":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shortpick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Showerhead":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SidebarSearchLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchLTR/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchLTR/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SidebarSearchRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchRTL/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SignOut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipBack10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForward10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForward30":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForwardTab":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sleep":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideGrid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideHide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideLayout":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMicrophone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultipleArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultipleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTransition":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Smartwatch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SmartwatchDot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SoundSource":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SoundWaveCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Spacebar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerBluetooth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerUSB":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpinneriOS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpinneriOS/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpinneriOS/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHint/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportAmericanFootball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportBaseball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportBasketball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportHockey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareEraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareEraser/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintApps":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquaresNested":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquaresNested/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquaresNested/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackArrowForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowRightEnd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowRightStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarEmphasis":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stethoscope":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StickerAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Storage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stream":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamInput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamInputOutput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInputOutput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInputOutput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamOutput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamOutput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamOutput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StyleGuide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubGrid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SurfaceEarbuds":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SurfaceHub":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwimmingPool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Syringe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"System":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopClock/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopClock/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopCopy/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopCopy/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopMultipleBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopNewPage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopNewPage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopNewPage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabInPrivateAccount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableChecker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableChecker/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableChecker/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableColumnTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCopy/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCopy/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableImage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetLessThanOrEqualTo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSplit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSplit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabletLaptop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletLaptop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletLaptop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabletSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabShieldDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagCircle/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagCircle/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TapDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TapSingle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareDatabase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareDatabase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquarePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquarePerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquarePerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TasksApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Teddy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddSpaceAfter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddSpaceBefore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddT":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributedEvenly":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributedVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustify":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLow90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLowRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLowRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAsterisk":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAsterisk/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAsterisk/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBaseline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBaseline/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBaseline/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignBottomRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignMiddleRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignTopRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListDismiss/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTRRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTLRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTLRotate90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTLRotate90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareClock/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareClock/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquarePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCollapse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOne":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneNarrow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneSemiNarrow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneWide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneWideLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnThree":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwoLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwoRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextContinuous":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescription":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescriptionLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescriptionRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate270Right":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90Left":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90Right":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextEditStyle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextEffects":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLineTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLineTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFootnote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeftTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeftTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRightTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRightTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarError/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarError/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHanging":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHangingTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHangingTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextLineSpacing":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberFormat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/20_f.svg"},"Patterns":null},"LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/20_f.svg"},"Patterns":null},"LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPeriodAsterisk":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPeriodAsterisk/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPeriodAsterisk/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionBehind":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionFront":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionThrough":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionTight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextProofingTools":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderlineDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWholeWord":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWholeWord/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWholeWord/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWordCount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Thinking":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TicketHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimeAndWeather":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timeline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimePicker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TooltipQuote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TopSpeed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Transmission":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrayItemAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrayItemRemove":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeDeciduous":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeEvergreen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeEvergreen/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeEvergreen/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TVArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVArrowRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVArrowRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Umbrella":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"UninstallApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"USBPlug":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"UsbStick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCableCar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckBag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video360":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video360Off":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360Off/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360Off/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonStarOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPlayPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoRecording":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoRecording/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoRecording/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSecurity":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ViewDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ViewDesktopMobile":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VirtualNetwork":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetwork/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetwork/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VirtualNetworkToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetworkToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetworkToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowSubtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowSubtract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Vote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WalkieTalkie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wallpaper":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WarningShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WarningShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WarningShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Washer":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherBlowingSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherCloudy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherDrizzle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherDuststorm":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherFog":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHailDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHailNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHaze":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherPartlyCloudyNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRain":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainShowersDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainShowersNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowflake":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowShowerDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowShowerNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSqualls":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunnyHigh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunnyLow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherThunderstorm":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Whiteboard":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAdOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAdPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowBulletList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletList/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletList/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowBulletListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletListAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletListAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowConsole":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowConsole/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowConsole/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderHorizontalOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontalOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontalOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowInPrivate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowInPrivateAccount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivateAccount/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivateAccount/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowMultipleSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultipleSwap/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultipleSwap/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowText/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowText/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WrenchScrewdriver":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxConsole":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxControllerError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Xray":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppStore":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppStore/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppStore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingMore":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMore/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Component2DoubleTapSwipeDown":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeDown/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Component2DoubleTapSwipeUp":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeUp/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropSparkle":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropSparkle/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridCircles":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/28_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSArrowLTR":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowLTR/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSArrowRTL":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowRTL/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreenText":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenText/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanQRCode":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanQRCode/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanQRCode/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideContent":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideContent/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideContent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTRRotate270":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate270/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatBubbles":{"Children":{"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/32_f.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardText":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardText/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardText/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDefault":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDefault/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDefault/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAbcUnderlineDouble":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAbcUnderlineDouble/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAbcUnderlineDouble/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPeople":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPeople/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPeople/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceBlocked":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceOffline":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceOOF":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceUnknown":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorFillAccent":{"Children":{"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorLineAccent":{"Children":{"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorBackgroundAccent":{"Children":{"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackgroundAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackgroundAccent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Fast.Components.FluentUI.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Microsoft.Fast.Components.FluentUI.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"BlazorInputFile":{"Children":{"inputfile.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"inputfile.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazored.Modal":{"Children":{"BlazoredModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"BlazoredModal.razor.js"},"Patterns":null},"Blazored.Modal.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Blazored.Modal.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"GraphSample.styles.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"GraphSample.styles.css"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"_framework":{"Children":{"AWSSDK.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.Core.dll"},"Patterns":null},"AWSSDK.SecurityToken.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.SecurityToken.dll"},"Patterns":null},"Azure.AI.OpenAI.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.OpenAI.dll"},"Patterns":null},"Azure.AI.TextAnalytics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.TextAnalytics.dll"},"Patterns":null},"Azure.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.Core.dll"},"Patterns":null},"AzureOpenAIClient.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AzureOpenAIClient.Http.dll"},"Patterns":null},"Blazored.Modal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Blazored.Modal.dll"},"Patterns":null},"BlazorInputFile.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BlazorInputFile.dll"},"Patterns":null},"ChartJSCore.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ChartJSCore.dll"},"Patterns":null},"DnsClient.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DnsClient.dll"},"Patterns":null},"GrapeCity.Documents.Imaging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Imaging.dll"},"Patterns":null},"GrapeCity.Documents.Pdf.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Pdf.dll"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll"},"Patterns":null},"Microsoft.AspNetCore.WebUtilities.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.WebUtilities.dll"},"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Authentication.WebAssembly.Msal.dll"},"Patterns":null},"Microsoft.Bcl.AsyncInterfaces.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Bcl.AsyncInterfaces.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll"},"Patterns":null},"Microsoft.Extensions.Hosting.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Hosting.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Http.dll"},"Patterns":null},"Microsoft.Extensions.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.dll"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Options.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Options.dll"},"Patterns":null},"Microsoft.Extensions.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll"},"Patterns":null},"Microsoft.Fast.Components.FluentUI.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Fast.Components.FluentUI.dll"},"Patterns":null},"Microsoft.Graph.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.dll"},"Patterns":null},"Microsoft.Graph.Beta.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Beta.dll"},"Patterns":null},"Microsoft.Graph.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Core.dll"},"Patterns":null},"Microsoft.IdentityModel.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Abstractions.dll"},"Patterns":null},"Microsoft.IdentityModel.JsonWebTokens.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.JsonWebTokens.dll"},"Patterns":null},"Microsoft.IdentityModel.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Logging.dll"},"Patterns":null},"Microsoft.IdentityModel.Protocols.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.dll"},"Patterns":null},"Microsoft.IdentityModel.Protocols.OpenIdConnect.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll"},"Patterns":null},"Microsoft.IdentityModel.Tokens.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Tokens.dll"},"Patterns":null},"Microsoft.JSInterop.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.dll"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll"},"Patterns":null},"Microsoft.Kiota.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Abstractions.dll"},"Patterns":null},"Microsoft.Kiota.Authentication.Azure.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Authentication.Azure.dll"},"Patterns":null},"Microsoft.Kiota.Http.HttpClientLibrary.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Form.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Form.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Json.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Text.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Text.dll"},"Patterns":null},"Microsoft.Net.Http.Headers.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Net.Http.Headers.dll"},"Patterns":null},"MongoDB.Bson.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Bson.dll"},"Patterns":null},"MongoDB.Driver.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.dll"},"Patterns":null},"MongoDB.Driver.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.Core.dll"},"Patterns":null},"MongoDB.Libmongocrypt.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Libmongocrypt.dll"},"Patterns":null},"Newtonsoft.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Newtonsoft.Json.dll"},"Patterns":null},"DocumentFormat.OpenXml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DocumentFormat.OpenXml.dll"},"Patterns":null},"BouncyCastle.Crypto.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BouncyCastle.Crypto.dll"},"Patterns":null},"SharpCompress.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharpCompress.dll"},"Patterns":null},"Snappier.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Snappier.dll"},"Patterns":null},"System.IdentityModel.Tokens.Jwt.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IdentityModel.Tokens.Jwt.dll"},"Patterns":null},"System.IO.Packaging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Packaging.dll"},"Patterns":null},"System.IO.Pipelines.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipelines.dll"},"Patterns":null},"System.Memory.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.Data.dll"},"Patterns":null},"Tavis.UriTemplates.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Tavis.UriTemplates.dll"},"Patterns":null},"TimeZoneConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/TimeZoneConverter.dll"},"Patterns":null},"ZstdSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ZstdSharp.dll"},"Patterns":null},"ja":{"Children":{"GrapeCity.Documents.Imaging.resources.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Imaging.resources.dll"},"Patterns":null},"GrapeCity.Documents.Pdf.resources.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Pdf.resources.dll"},"Patterns":null},"GrapeCity.Documents.Imaging.resources.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz"},"Patterns":null},"GrapeCity.Documents.Pdf.resources.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.CSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.CSharp.dll"},"Patterns":null},"Microsoft.VisualBasic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll"},"Patterns":null},"Microsoft.VisualBasic.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.dll"},"Patterns":null},"Microsoft.Win32.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Primitives.dll"},"Patterns":null},"Microsoft.Win32.Registry.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Registry.dll"},"Patterns":null},"System.AppContext.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.AppContext.dll"},"Patterns":null},"System.Buffers.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Buffers.dll"},"Patterns":null},"System.Collections.Concurrent.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Concurrent.dll"},"Patterns":null},"System.Collections.Immutable.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Immutable.dll"},"Patterns":null},"System.Collections.NonGeneric.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.NonGeneric.dll"},"Patterns":null},"System.Collections.Specialized.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Specialized.dll"},"Patterns":null},"System.Collections.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.dll"},"Patterns":null},"System.ComponentModel.Annotations.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Annotations.dll"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll"},"Patterns":null},"System.ComponentModel.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Primitives.dll"},"Patterns":null},"System.ComponentModel.TypeConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll"},"Patterns":null},"System.ComponentModel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.dll"},"Patterns":null},"System.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Configuration.dll"},"Patterns":null},"System.Console.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Console.dll"},"Patterns":null},"System.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Core.dll"},"Patterns":null},"System.Data.Common.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.Common.dll"},"Patterns":null},"System.Data.DataSetExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.DataSetExtensions.dll"},"Patterns":null},"System.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.dll"},"Patterns":null},"System.Diagnostics.Contracts.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Contracts.dll"},"Patterns":null},"System.Diagnostics.Debug.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Debug.dll"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll"},"Patterns":null},"System.Diagnostics.Process.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Process.dll"},"Patterns":null},"System.Diagnostics.StackTrace.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.StackTrace.dll"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll"},"Patterns":null},"System.Diagnostics.Tools.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tools.dll"},"Patterns":null},"System.Diagnostics.TraceSource.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TraceSource.dll"},"Patterns":null},"System.Diagnostics.Tracing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tracing.dll"},"Patterns":null},"System.Drawing.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.Primitives.dll"},"Patterns":null},"System.Drawing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.dll"},"Patterns":null},"System.Dynamic.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Dynamic.Runtime.dll"},"Patterns":null},"System.Formats.Asn1.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Asn1.dll"},"Patterns":null},"System.Formats.Tar.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Tar.dll"},"Patterns":null},"System.Globalization.Calendars.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Calendars.dll"},"Patterns":null},"System.Globalization.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Extensions.dll"},"Patterns":null},"System.Globalization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.dll"},"Patterns":null},"System.IO.Compression.Brotli.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.Brotli.dll"},"Patterns":null},"System.IO.Compression.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.FileSystem.dll"},"Patterns":null},"System.IO.Compression.ZipFile.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.ZipFile.dll"},"Patterns":null},"System.IO.Compression.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.dll"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll"},"Patterns":null},"System.IO.FileSystem.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll"},"Patterns":null},"System.IO.FileSystem.Watcher.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll"},"Patterns":null},"System.IO.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.dll"},"Patterns":null},"System.IO.IsolatedStorage.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.IsolatedStorage.dll"},"Patterns":null},"System.IO.MemoryMappedFiles.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll"},"Patterns":null},"System.IO.Pipes.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll"},"Patterns":null},"System.IO.Pipes.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.dll"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll"},"Patterns":null},"System.IO.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.dll"},"Patterns":null},"System.Linq.Expressions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Expressions.dll"},"Patterns":null},"System.Linq.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Parallel.dll"},"Patterns":null},"System.Linq.Queryable.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Queryable.dll"},"Patterns":null},"System.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.dll"},"Patterns":null},"System.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.dll"},"Patterns":null},"System.Net.Http.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.Json.dll"},"Patterns":null},"System.Net.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.dll"},"Patterns":null},"System.Net.HttpListener.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.HttpListener.dll"},"Patterns":null},"System.Net.Mail.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Mail.dll"},"Patterns":null},"System.Net.NameResolution.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NameResolution.dll"},"Patterns":null},"System.Net.NetworkInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NetworkInformation.dll"},"Patterns":null},"System.Net.Ping.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Ping.dll"},"Patterns":null},"System.Net.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Primitives.dll"},"Patterns":null},"System.Net.Quic.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Quic.dll"},"Patterns":null},"System.Net.Requests.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Requests.dll"},"Patterns":null},"System.Net.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Security.dll"},"Patterns":null},"System.Net.ServicePoint.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.ServicePoint.dll"},"Patterns":null},"System.Net.Sockets.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Sockets.dll"},"Patterns":null},"System.Net.WebClient.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebClient.dll"},"Patterns":null},"System.Net.WebHeaderCollection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebHeaderCollection.dll"},"Patterns":null},"System.Net.WebProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebProxy.dll"},"Patterns":null},"System.Net.WebSockets.Client.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.Client.dll"},"Patterns":null},"System.Net.WebSockets.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.dll"},"Patterns":null},"System.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.dll"},"Patterns":null},"System.Numerics.Vectors.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.Vectors.dll"},"Patterns":null},"System.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.dll"},"Patterns":null},"System.ObjectModel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ObjectModel.dll"},"Patterns":null},"System.Private.DataContractSerialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.DataContractSerialization.dll"},"Patterns":null},"System.Private.Uri.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Uri.dll"},"Patterns":null},"System.Private.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.Linq.dll"},"Patterns":null},"System.Private.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.dll"},"Patterns":null},"System.Reflection.DispatchProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.DispatchProxy.dll"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll"},"Patterns":null},"System.Reflection.Emit.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.dll"},"Patterns":null},"System.Reflection.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Extensions.dll"},"Patterns":null},"System.Reflection.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Metadata.dll"},"Patterns":null},"System.Reflection.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Primitives.dll"},"Patterns":null},"System.Reflection.TypeExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.TypeExtensions.dll"},"Patterns":null},"System.Reflection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.dll"},"Patterns":null},"System.Resources.Reader.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Reader.dll"},"Patterns":null},"System.Resources.ResourceManager.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.ResourceManager.dll"},"Patterns":null},"System.Resources.Writer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Writer.dll"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll"},"Patterns":null},"System.Runtime.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Extensions.dll"},"Patterns":null},"System.Runtime.Handles.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Handles.dll"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.dll"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll"},"Patterns":null},"System.Runtime.InteropServices.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.dll"},"Patterns":null},"System.Runtime.Intrinsics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Intrinsics.dll"},"Patterns":null},"System.Runtime.Loader.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Loader.dll"},"Patterns":null},"System.Runtime.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Numerics.dll"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll"},"Patterns":null},"System.Runtime.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Json.dll"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll"},"Patterns":null},"System.Runtime.Serialization.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll"},"Patterns":null},"System.Runtime.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.dll"},"Patterns":null},"System.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.dll"},"Patterns":null},"System.Security.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.AccessControl.dll"},"Patterns":null},"System.Security.Claims.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Claims.dll"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll"},"Patterns":null},"System.Security.Cryptography.Cng.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Cng.dll"},"Patterns":null},"System.Security.Cryptography.Csp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Csp.dll"},"Patterns":null},"System.Security.Cryptography.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll"},"Patterns":null},"System.Security.Cryptography.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll"},"Patterns":null},"System.Security.Cryptography.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.dll"},"Patterns":null},"System.Security.Principal.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.Windows.dll"},"Patterns":null},"System.Security.Principal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.dll"},"Patterns":null},"System.Security.SecureString.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.SecureString.dll"},"Patterns":null},"System.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.dll"},"Patterns":null},"System.ServiceModel.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceModel.Web.dll"},"Patterns":null},"System.ServiceProcess.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceProcess.dll"},"Patterns":null},"System.Text.Encoding.CodePages.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.CodePages.dll"},"Patterns":null},"System.Text.Encoding.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.Extensions.dll"},"Patterns":null},"System.Text.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.dll"},"Patterns":null},"System.Text.Encodings.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encodings.Web.dll"},"Patterns":null},"System.Text.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Json.dll"},"Patterns":null},"System.Text.RegularExpressions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.RegularExpressions.dll"},"Patterns":null},"System.Threading.Channels.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Channels.dll"},"Patterns":null},"System.Threading.Overlapped.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Overlapped.dll"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll"},"Patterns":null},"System.Threading.Tasks.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll"},"Patterns":null},"System.Threading.Tasks.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll"},"Patterns":null},"System.Threading.Tasks.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.dll"},"Patterns":null},"System.Threading.Thread.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Thread.dll"},"Patterns":null},"System.Threading.ThreadPool.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.ThreadPool.dll"},"Patterns":null},"System.Threading.Timer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Timer.dll"},"Patterns":null},"System.Threading.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.dll"},"Patterns":null},"System.Transactions.Local.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.Local.dll"},"Patterns":null},"System.Transactions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.dll"},"Patterns":null},"System.ValueTuple.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ValueTuple.dll"},"Patterns":null},"System.Web.HttpUtility.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.HttpUtility.dll"},"Patterns":null},"System.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.dll"},"Patterns":null},"System.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Windows.dll"},"Patterns":null},"System.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Linq.dll"},"Patterns":null},"System.Xml.ReaderWriter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.ReaderWriter.dll"},"Patterns":null},"System.Xml.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Serialization.dll"},"Patterns":null},"System.Xml.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XDocument.dll"},"Patterns":null},"System.Xml.XPath.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.XDocument.dll"},"Patterns":null},"System.Xml.XPath.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.dll"},"Patterns":null},"System.Xml.XmlDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlDocument.dll"},"Patterns":null},"System.Xml.XmlSerializer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlSerializer.dll"},"Patterns":null},"System.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.dll"},"Patterns":null},"System.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.dll"},"Patterns":null},"WindowsBase.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/WindowsBase.dll"},"Patterns":null},"mscorlib.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/mscorlib.dll"},"Patterns":null},"netstandard.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/netstandard.dll"},"Patterns":null},"System.Private.CoreLib.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.CoreLib.dll"},"Patterns":null},"dotnet.7.0.5.9her4wdnhl.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.7.0.5.9her4wdnhl.js"},"Patterns":null},"dotnet.timezones.blat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.timezones.blat"},"Patterns":null},"dotnet.wasm":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.wasm"},"Patterns":null},"icudt.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt.dat"},"Patterns":null},"icudt_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_CJK.dat"},"Patterns":null},"icudt_EFIGS.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_EFIGS.dat"},"Patterns":null},"icudt_no_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_no_CJK.dat"},"Patterns":null},"SharedModels.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.dll"},"Patterns":null},"SharedModels.pdb":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.pdb"},"Patterns":null},"GraphSample.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.dll"},"Patterns":null},"GraphSample.pdb":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.pdb"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"AWSSDK.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.Core.dll.gz"},"Patterns":null},"AWSSDK.SecurityToken.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.SecurityToken.dll.gz"},"Patterns":null},"Azure.AI.OpenAI.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.OpenAI.dll.gz"},"Patterns":null},"Azure.AI.TextAnalytics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.TextAnalytics.dll.gz"},"Patterns":null},"Azure.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.Core.dll.gz"},"Patterns":null},"AzureOpenAIClient.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AzureOpenAIClient.Http.dll.gz"},"Patterns":null},"Blazored.Modal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Blazored.Modal.dll.gz"},"Patterns":null},"BlazorInputFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BlazorInputFile.dll.gz"},"Patterns":null},"ChartJSCore.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ChartJSCore.dll.gz"},"Patterns":null},"DnsClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DnsClient.dll.gz"},"Patterns":null},"GrapeCity.Documents.Imaging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Imaging.dll.gz"},"Patterns":null},"GrapeCity.Documents.Pdf.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Pdf.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.WebUtilities.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.WebUtilities.dll.gz"},"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz"},"Patterns":null},"Microsoft.Bcl.AsyncInterfaces.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz"},"Patterns":null},"Microsoft.Extensions.Hosting.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Http.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Options.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Options.dll.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll.gz"},"Patterns":null},"Microsoft.Fast.Components.FluentUI.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Fast.Components.FluentUI.dll.gz"},"Patterns":null},"Microsoft.Graph.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.dll.gz"},"Patterns":null},"Microsoft.Graph.Beta.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Beta.dll.gz"},"Patterns":null},"Microsoft.Graph.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Core.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Abstractions.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.JsonWebTokens.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Logging.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Protocols.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Tokens.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Tokens.dll.gz"},"Patterns":null},"Microsoft.JSInterop.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.dll.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.Kiota.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Kiota.Authentication.Azure.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Authentication.Azure.dll.gz"},"Patterns":null},"Microsoft.Kiota.Http.HttpClientLibrary.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Form.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Form.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Json.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Text.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Text.dll.gz"},"Patterns":null},"Microsoft.Net.Http.Headers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Net.Http.Headers.dll.gz"},"Patterns":null},"MongoDB.Bson.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Bson.dll.gz"},"Patterns":null},"MongoDB.Driver.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.dll.gz"},"Patterns":null},"MongoDB.Driver.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.Core.dll.gz"},"Patterns":null},"MongoDB.Libmongocrypt.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Libmongocrypt.dll.gz"},"Patterns":null},"Newtonsoft.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Newtonsoft.Json.dll.gz"},"Patterns":null},"DocumentFormat.OpenXml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DocumentFormat.OpenXml.dll.gz"},"Patterns":null},"BouncyCastle.Crypto.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BouncyCastle.Crypto.dll.gz"},"Patterns":null},"SharpCompress.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharpCompress.dll.gz"},"Patterns":null},"Snappier.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Snappier.dll.gz"},"Patterns":null},"System.IdentityModel.Tokens.Jwt.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IdentityModel.Tokens.Jwt.dll.gz"},"Patterns":null},"System.IO.Packaging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Packaging.dll.gz"},"Patterns":null},"System.IO.Pipelines.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipelines.dll.gz"},"Patterns":null},"System.Memory.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.Data.dll.gz"},"Patterns":null},"Tavis.UriTemplates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Tavis.UriTemplates.dll.gz"},"Patterns":null},"TimeZoneConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/TimeZoneConverter.dll.gz"},"Patterns":null},"ZstdSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ZstdSharp.dll.gz"},"Patterns":null},"Microsoft.CSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.CSharp.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.dll.gz"},"Patterns":null},"Microsoft.Win32.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Primitives.dll.gz"},"Patterns":null},"Microsoft.Win32.Registry.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Registry.dll.gz"},"Patterns":null},"System.AppContext.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.AppContext.dll.gz"},"Patterns":null},"System.Buffers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Buffers.dll.gz"},"Patterns":null},"System.Collections.Concurrent.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Concurrent.dll.gz"},"Patterns":null},"System.Collections.Immutable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Immutable.dll.gz"},"Patterns":null},"System.Collections.NonGeneric.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.NonGeneric.dll.gz"},"Patterns":null},"System.Collections.Specialized.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Specialized.dll.gz"},"Patterns":null},"System.Collections.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.dll.gz"},"Patterns":null},"System.ComponentModel.Annotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Annotations.dll.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll.gz"},"Patterns":null},"System.ComponentModel.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Primitives.dll.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll.gz"},"Patterns":null},"System.ComponentModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.dll.gz"},"Patterns":null},"System.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Configuration.dll.gz"},"Patterns":null},"System.Console.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Console.dll.gz"},"Patterns":null},"System.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Core.dll.gz"},"Patterns":null},"System.Data.Common.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.Common.dll.gz"},"Patterns":null},"System.Data.DataSetExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.DataSetExtensions.dll.gz"},"Patterns":null},"System.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.dll.gz"},"Patterns":null},"System.Diagnostics.Contracts.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Contracts.dll.gz"},"Patterns":null},"System.Diagnostics.Debug.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Debug.dll.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll.gz"},"Patterns":null},"System.Diagnostics.Process.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Process.dll.gz"},"Patterns":null},"System.Diagnostics.StackTrace.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.StackTrace.dll.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll.gz"},"Patterns":null},"System.Diagnostics.Tools.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tools.dll.gz"},"Patterns":null},"System.Diagnostics.TraceSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TraceSource.dll.gz"},"Patterns":null},"System.Diagnostics.Tracing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tracing.dll.gz"},"Patterns":null},"System.Drawing.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.Primitives.dll.gz"},"Patterns":null},"System.Drawing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.dll.gz"},"Patterns":null},"System.Dynamic.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Dynamic.Runtime.dll.gz"},"Patterns":null},"System.Formats.Asn1.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Asn1.dll.gz"},"Patterns":null},"System.Formats.Tar.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Tar.dll.gz"},"Patterns":null},"System.Globalization.Calendars.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Calendars.dll.gz"},"Patterns":null},"System.Globalization.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Extensions.dll.gz"},"Patterns":null},"System.Globalization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.dll.gz"},"Patterns":null},"System.IO.Compression.Brotli.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.Brotli.dll.gz"},"Patterns":null},"System.IO.Compression.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.FileSystem.dll.gz"},"Patterns":null},"System.IO.Compression.ZipFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.ZipFile.dll.gz"},"Patterns":null},"System.IO.Compression.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.dll.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll.gz"},"Patterns":null},"System.IO.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.dll.gz"},"Patterns":null},"System.IO.IsolatedStorage.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.IsolatedStorage.dll.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll.gz"},"Patterns":null},"System.IO.Pipes.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.dll.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll.gz"},"Patterns":null},"System.IO.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.dll.gz"},"Patterns":null},"System.Linq.Expressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Expressions.dll.gz"},"Patterns":null},"System.Linq.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Parallel.dll.gz"},"Patterns":null},"System.Linq.Queryable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Queryable.dll.gz"},"Patterns":null},"System.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.dll.gz"},"Patterns":null},"System.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.dll.gz"},"Patterns":null},"System.Net.Http.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.Json.dll.gz"},"Patterns":null},"System.Net.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.dll.gz"},"Patterns":null},"System.Net.HttpListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.HttpListener.dll.gz"},"Patterns":null},"System.Net.Mail.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Mail.dll.gz"},"Patterns":null},"System.Net.NameResolution.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NameResolution.dll.gz"},"Patterns":null},"System.Net.NetworkInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NetworkInformation.dll.gz"},"Patterns":null},"System.Net.Ping.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Ping.dll.gz"},"Patterns":null},"System.Net.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Primitives.dll.gz"},"Patterns":null},"System.Net.Quic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Quic.dll.gz"},"Patterns":null},"System.Net.Requests.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Requests.dll.gz"},"Patterns":null},"System.Net.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Security.dll.gz"},"Patterns":null},"System.Net.ServicePoint.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.ServicePoint.dll.gz"},"Patterns":null},"System.Net.Sockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Sockets.dll.gz"},"Patterns":null},"System.Net.WebClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebClient.dll.gz"},"Patterns":null},"System.Net.WebHeaderCollection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebHeaderCollection.dll.gz"},"Patterns":null},"System.Net.WebProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebProxy.dll.gz"},"Patterns":null},"System.Net.WebSockets.Client.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.Client.dll.gz"},"Patterns":null},"System.Net.WebSockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.dll.gz"},"Patterns":null},"System.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.dll.gz"},"Patterns":null},"System.Numerics.Vectors.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.Vectors.dll.gz"},"Patterns":null},"System.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.dll.gz"},"Patterns":null},"System.ObjectModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ObjectModel.dll.gz"},"Patterns":null},"System.Private.DataContractSerialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.DataContractSerialization.dll.gz"},"Patterns":null},"System.Private.Uri.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Uri.dll.gz"},"Patterns":null},"System.Private.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.Linq.dll.gz"},"Patterns":null},"System.Private.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.dll.gz"},"Patterns":null},"System.Reflection.DispatchProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.DispatchProxy.dll.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll.gz"},"Patterns":null},"System.Reflection.Emit.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.dll.gz"},"Patterns":null},"System.Reflection.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Extensions.dll.gz"},"Patterns":null},"System.Reflection.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Metadata.dll.gz"},"Patterns":null},"System.Reflection.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Primitives.dll.gz"},"Patterns":null},"System.Reflection.TypeExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.TypeExtensions.dll.gz"},"Patterns":null},"System.Reflection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.dll.gz"},"Patterns":null},"System.Resources.Reader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Reader.dll.gz"},"Patterns":null},"System.Resources.ResourceManager.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.ResourceManager.dll.gz"},"Patterns":null},"System.Resources.Writer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Writer.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll.gz"},"Patterns":null},"System.Runtime.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Extensions.dll.gz"},"Patterns":null},"System.Runtime.Handles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Handles.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.dll.gz"},"Patterns":null},"System.Runtime.Intrinsics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Intrinsics.dll.gz"},"Patterns":null},"System.Runtime.Loader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Loader.dll.gz"},"Patterns":null},"System.Runtime.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Numerics.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Json.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll.gz"},"Patterns":null},"System.Runtime.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.dll.gz"},"Patterns":null},"System.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.dll.gz"},"Patterns":null},"System.Security.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.AccessControl.dll.gz"},"Patterns":null},"System.Security.Claims.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Claims.dll.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Cng.dll.gz"},"Patterns":null},"System.Security.Cryptography.Csp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Csp.dll.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll.gz"},"Patterns":null},"System.Security.Cryptography.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.dll.gz"},"Patterns":null},"System.Security.Principal.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.Windows.dll.gz"},"Patterns":null},"System.Security.Principal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.dll.gz"},"Patterns":null},"System.Security.SecureString.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.SecureString.dll.gz"},"Patterns":null},"System.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.dll.gz"},"Patterns":null},"System.ServiceModel.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceModel.Web.dll.gz"},"Patterns":null},"System.ServiceProcess.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceProcess.dll.gz"},"Patterns":null},"System.Text.Encoding.CodePages.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.CodePages.dll.gz"},"Patterns":null},"System.Text.Encoding.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.Extensions.dll.gz"},"Patterns":null},"System.Text.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.dll.gz"},"Patterns":null},"System.Text.Encodings.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encodings.Web.dll.gz"},"Patterns":null},"System.Text.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Json.dll.gz"},"Patterns":null},"System.Text.RegularExpressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.RegularExpressions.dll.gz"},"Patterns":null},"System.Threading.Channels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Channels.dll.gz"},"Patterns":null},"System.Threading.Overlapped.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Overlapped.dll.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll.gz"},"Patterns":null},"System.Threading.Tasks.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.dll.gz"},"Patterns":null},"System.Threading.Thread.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Thread.dll.gz"},"Patterns":null},"System.Threading.ThreadPool.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.ThreadPool.dll.gz"},"Patterns":null},"System.Threading.Timer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Timer.dll.gz"},"Patterns":null},"System.Threading.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.dll.gz"},"Patterns":null},"System.Transactions.Local.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.Local.dll.gz"},"Patterns":null},"System.Transactions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.dll.gz"},"Patterns":null},"System.ValueTuple.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ValueTuple.dll.gz"},"Patterns":null},"System.Web.HttpUtility.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.HttpUtility.dll.gz"},"Patterns":null},"System.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.dll.gz"},"Patterns":null},"System.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Windows.dll.gz"},"Patterns":null},"System.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Linq.dll.gz"},"Patterns":null},"System.Xml.ReaderWriter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.ReaderWriter.dll.gz"},"Patterns":null},"System.Xml.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Serialization.dll.gz"},"Patterns":null},"System.Xml.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.dll.gz"},"Patterns":null},"System.Xml.XmlDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlDocument.dll.gz"},"Patterns":null},"System.Xml.XmlSerializer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlSerializer.dll.gz"},"Patterns":null},"System.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.dll.gz"},"Patterns":null},"System.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.dll.gz"},"Patterns":null},"WindowsBase.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/WindowsBase.dll.gz"},"Patterns":null},"mscorlib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/mscorlib.dll.gz"},"Patterns":null},"netstandard.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/netstandard.dll.gz"},"Patterns":null},"System.Private.CoreLib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.CoreLib.dll.gz"},"Patterns":null},"dotnet.7.0.5.9her4wdnhl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.7.0.5.9her4wdnhl.js.gz"},"Patterns":null},"dotnet.timezones.blat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.timezones.blat.gz"},"Patterns":null},"dotnet.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.wasm.gz"},"Patterns":null},"icudt.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt.dat.gz"},"Patterns":null},"icudt_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_CJK.dat.gz"},"Patterns":null},"icudt_EFIGS.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_EFIGS.dat.gz"},"Patterns":null},"icudt_no_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_no_CJK.dat.gz"},"Patterns":null},"SharedModels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.dll.gz"},"Patterns":null},"SharedModels.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.pdb.gz"},"Patterns":null},"GraphSample.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.dll.gz"},"Patterns":null},"GraphSample.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.pdb.gz"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.webassembly.js.gz"},"Patterns":null},"blazor.boot.json":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.boot.json"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll
new file mode 100644
index 000000000..1ddfb5cf7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Authorization.dll
new file mode 100644
index 000000000..648cd5134
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Authorization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll
new file mode 100644
index 000000000..d524cc4ee
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll
new file mode 100644
index 000000000..4368c70bf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
new file mode 100644
index 000000000..3db1b73c6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll
new file mode 100644
index 000000000..8b4d59b74
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll
new file mode 100644
index 000000000..9b2c61d61
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll
new file mode 100644
index 000000000..85d6c4a57
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.WebUtilities.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.WebUtilities.dll
new file mode 100644
index 000000000..dc1e804ce
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.WebUtilities.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll
new file mode 100644
index 000000000..9dce9bcfa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll
new file mode 100644
index 000000000..a5b7ff99a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.CSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.CSharp.dll
new file mode 100644
index 000000000..04a517768
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.CSharp.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 000000000..058b12445
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 000000000..60441e996
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 000000000..def889adc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 000000000..e8bdcc1d3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 000000000..fd14a9892
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 000000000..048ba4129
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 000000000..2dcd31b5c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 000000000..dc9b7ee37
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 000000000..b186402c6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 000000000..683ac380f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 000000000..6c4181888
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Http.dll
new file mode 100644
index 000000000..852830a1a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Http.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 000000000..41909d250
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.dll
new file mode 100644
index 000000000..f21b68bdf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Options.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Options.dll
new file mode 100644
index 000000000..09a4ad508
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Options.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 000000000..995314316
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Fast.Components.FluentUI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Fast.Components.FluentUI.dll
new file mode 100644
index 000000000..0b16fef14
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Fast.Components.FluentUI.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Beta.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Beta.dll
new file mode 100644
index 000000000..61802fbfb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Beta.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Core.dll
new file mode 100644
index 000000000..172873770
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.dll
new file mode 100644
index 000000000..cffae0f13
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll
new file mode 100644
index 000000000..5dc9e9748
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll
new file mode 100644
index 000000000..22b2a2840
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll
new file mode 100644
index 000000000..b96a33418
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
new file mode 100644
index 000000000..7197d3519
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll
new file mode 100644
index 000000000..7fbcdd9f6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll
new file mode 100644
index 000000000..b213bdce0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll
new file mode 100644
index 000000000..fb38f8e84
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.dll
new file mode 100644
index 000000000..aab7b21bc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Abstractions.dll
new file mode 100644
index 000000000..a789f3626
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Authentication.Azure.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Authentication.Azure.dll
new file mode 100644
index 000000000..ed8ff39f7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Authentication.Azure.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Http.HttpClientLibrary.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Http.HttpClientLibrary.dll
new file mode 100644
index 000000000..fb9aa1863
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Http.HttpClientLibrary.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Form.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Form.dll
new file mode 100644
index 000000000..c21ff4a5e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Form.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Json.dll
new file mode 100644
index 000000000..fbf60ab04
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Text.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Text.dll
new file mode 100644
index 000000000..d15c666ab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Text.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Net.Http.Headers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Net.Http.Headers.dll
new file mode 100644
index 000000000..01dec16aa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Net.Http.Headers.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll
new file mode 100644
index 000000000..c9df990e1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.dll
new file mode 100644
index 000000000..79d79a381
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Primitives.dll
new file mode 100644
index 000000000..72f4b2c35
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Registry.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Registry.dll
new file mode 100644
index 000000000..529bbeff7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Registry.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Bson.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Bson.dll
new file mode 100644
index 000000000..c8980cf51
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Bson.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.Core.dll
new file mode 100644
index 000000000..dc5043a21
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.dll
new file mode 100644
index 000000000..db42ed05e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll
new file mode 100644
index 000000000..b57b81758
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Newtonsoft.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Newtonsoft.Json.dll
new file mode 100644
index 000000000..d035c38b4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Newtonsoft.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.dll
new file mode 100644
index 000000000..9e491c83c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.pdb
new file mode 100644
index 000000000..547f3024f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.pdb differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharpCompress.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharpCompress.dll
new file mode 100644
index 000000000..c1a7f0744
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharpCompress.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Snappier.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Snappier.dll
new file mode 100644
index 000000000..9b68e856c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Snappier.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.AppContext.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.AppContext.dll
new file mode 100644
index 000000000..88359450a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.AppContext.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Buffers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Buffers.dll
new file mode 100644
index 000000000..6e117cddb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Buffers.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Concurrent.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Concurrent.dll
new file mode 100644
index 000000000..68600f9af
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Concurrent.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Immutable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Immutable.dll
new file mode 100644
index 000000000..42ff9558b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Immutable.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.NonGeneric.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.NonGeneric.dll
new file mode 100644
index 000000000..a786e0fa6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.NonGeneric.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Specialized.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Specialized.dll
new file mode 100644
index 000000000..19d0895c0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Specialized.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.dll
new file mode 100644
index 000000000..5fe96d587
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Annotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Annotations.dll
new file mode 100644
index 000000000..817a8403d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Annotations.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll
new file mode 100644
index 000000000..ae1230f3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll
new file mode 100644
index 000000000..ec467f57c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Primitives.dll
new file mode 100644
index 000000000..ac8e43602
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll
new file mode 100644
index 000000000..f1c270e5d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.dll
new file mode 100644
index 000000000..a18f987ca
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Configuration.dll
new file mode 100644
index 000000000..44c4babfe
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Configuration.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Console.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Console.dll
new file mode 100644
index 000000000..649bb86f6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Console.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Core.dll
new file mode 100644
index 000000000..43dbcbc20
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.Common.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.Common.dll
new file mode 100644
index 000000000..49a2d3b5e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.Common.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.DataSetExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.DataSetExtensions.dll
new file mode 100644
index 000000000..c37f5144c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.DataSetExtensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.dll
new file mode 100644
index 000000000..5edabd59f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Contracts.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Contracts.dll
new file mode 100644
index 000000000..6022dcafc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Contracts.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Debug.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Debug.dll
new file mode 100644
index 000000000..e3be49797
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Debug.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 000000000..6ebbfb40e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll
new file mode 100644
index 000000000..e00ee616b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Process.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Process.dll
new file mode 100644
index 000000000..d312f6aad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Process.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.StackTrace.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.StackTrace.dll
new file mode 100644
index 000000000..90fedf27d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.StackTrace.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll
new file mode 100644
index 000000000..4dceedb74
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tools.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tools.dll
new file mode 100644
index 000000000..8840d760e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tools.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TraceSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TraceSource.dll
new file mode 100644
index 000000000..8aa04ee74
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TraceSource.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tracing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tracing.dll
new file mode 100644
index 000000000..e192e5f20
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tracing.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.Primitives.dll
new file mode 100644
index 000000000..f9420d62a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.dll
new file mode 100644
index 000000000..6a81fbfe7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Dynamic.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Dynamic.Runtime.dll
new file mode 100644
index 000000000..f31a2b99e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Dynamic.Runtime.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Asn1.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Asn1.dll
new file mode 100644
index 000000000..76abc7e8b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Asn1.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Tar.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Tar.dll
new file mode 100644
index 000000000..85bab67ec
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Tar.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Calendars.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Calendars.dll
new file mode 100644
index 000000000..5cbf030c2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Calendars.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Extensions.dll
new file mode 100644
index 000000000..3cf9baa98
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.dll
new file mode 100644
index 000000000..6084688ac
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.Brotli.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.Brotli.dll
new file mode 100644
index 000000000..d57490f8a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.Brotli.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.FileSystem.dll
new file mode 100644
index 000000000..8000ae034
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.FileSystem.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.ZipFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.ZipFile.dll
new file mode 100644
index 000000000..3bf1c60c0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.ZipFile.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.dll
new file mode 100644
index 000000000..991a82327
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll
new file mode 100644
index 000000000..2dae9283f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll
new file mode 100644
index 000000000..aee8f148d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll
new file mode 100644
index 000000000..a2dccf0a4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll
new file mode 100644
index 000000000..f7912bec9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.dll
new file mode 100644
index 000000000..dd6c782bb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.IsolatedStorage.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.IsolatedStorage.dll
new file mode 100644
index 000000000..486d49939
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.IsolatedStorage.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll
new file mode 100644
index 000000000..12c945860
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Packaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Packaging.dll
new file mode 100644
index 000000000..5460d2b3f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Packaging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipelines.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipelines.dll
new file mode 100644
index 000000000..cc7de0ce1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipelines.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll
new file mode 100644
index 000000000..4059ec2e6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.dll
new file mode 100644
index 000000000..1cb4c464c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll
new file mode 100644
index 000000000..901de5484
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.dll
new file mode 100644
index 000000000..f5c583f88
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll
new file mode 100644
index 000000000..19934cb40
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Expressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Expressions.dll
new file mode 100644
index 000000000..619a95967
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Expressions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Parallel.dll
new file mode 100644
index 000000000..e2887efbf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Parallel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Queryable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Queryable.dll
new file mode 100644
index 000000000..0818cb2d4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Queryable.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.dll
new file mode 100644
index 000000000..fc5990366
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.Data.dll
new file mode 100644
index 000000000..6f2a3e0ad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.Data.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.dll
new file mode 100644
index 000000000..ef420f782
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.Json.dll
new file mode 100644
index 000000000..9c5dc7fd1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.dll
new file mode 100644
index 000000000..40c4c07ff
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.HttpListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.HttpListener.dll
new file mode 100644
index 000000000..279b83975
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.HttpListener.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Mail.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Mail.dll
new file mode 100644
index 000000000..12da5a2fe
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Mail.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NameResolution.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NameResolution.dll
new file mode 100644
index 000000000..7329dc606
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NameResolution.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NetworkInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NetworkInformation.dll
new file mode 100644
index 000000000..a0273c543
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NetworkInformation.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Ping.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Ping.dll
new file mode 100644
index 000000000..e17d20e66
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Ping.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Primitives.dll
new file mode 100644
index 000000000..855498126
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Quic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Quic.dll
new file mode 100644
index 000000000..f99a72265
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Quic.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Requests.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Requests.dll
new file mode 100644
index 000000000..b624c6445
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Requests.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Security.dll
new file mode 100644
index 000000000..2d0cdcd24
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Security.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.ServicePoint.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.ServicePoint.dll
new file mode 100644
index 000000000..65d483147
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.ServicePoint.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Sockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Sockets.dll
new file mode 100644
index 000000000..f9a600529
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Sockets.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebClient.dll
new file mode 100644
index 000000000..abba87ef8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebClient.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebHeaderCollection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebHeaderCollection.dll
new file mode 100644
index 000000000..c569121df
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebHeaderCollection.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebProxy.dll
new file mode 100644
index 000000000..bd9d90c12
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebProxy.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.Client.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.Client.dll
new file mode 100644
index 000000000..6a65d0097
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.Client.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.dll
new file mode 100644
index 000000000..984f1e0ab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.dll
new file mode 100644
index 000000000..5c765d66a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.Vectors.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.Vectors.dll
new file mode 100644
index 000000000..964be0537
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.Vectors.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.dll
new file mode 100644
index 000000000..8f76e4f3c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ObjectModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ObjectModel.dll
new file mode 100644
index 000000000..b6f9ceff7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ObjectModel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.CoreLib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.CoreLib.dll
new file mode 100644
index 000000000..48e48e768
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.CoreLib.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.DataContractSerialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.DataContractSerialization.dll
new file mode 100644
index 000000000..2591b747f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.DataContractSerialization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Uri.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Uri.dll
new file mode 100644
index 000000000..da72bdcb8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Uri.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.Linq.dll
new file mode 100644
index 000000000..cd7f919d4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.Linq.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.dll
new file mode 100644
index 000000000..3e0ed9c58
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.DispatchProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.DispatchProxy.dll
new file mode 100644
index 000000000..d51db885f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.DispatchProxy.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.ILGeneration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.ILGeneration.dll
new file mode 100644
index 000000000..8d4088434
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.ILGeneration.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.Lightweight.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.Lightweight.dll
new file mode 100644
index 000000000..cefda99a2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.Lightweight.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.dll
new file mode 100644
index 000000000..d90e61ec5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Extensions.dll
new file mode 100644
index 000000000..0a49975c9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Metadata.dll
new file mode 100644
index 000000000..5e3b88f67
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Metadata.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Primitives.dll
new file mode 100644
index 000000000..2f3a7ee4c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.TypeExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.TypeExtensions.dll
new file mode 100644
index 000000000..807227f01
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.TypeExtensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.dll
new file mode 100644
index 000000000..559f8ed6f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Reader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Reader.dll
new file mode 100644
index 000000000..9d0e4b1fa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Reader.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.ResourceManager.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.ResourceManager.dll
new file mode 100644
index 000000000..b99f0a372
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.ResourceManager.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Writer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Writer.dll
new file mode 100644
index 000000000..9f697424c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Writer.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.Unsafe.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 000000000..b8b28fe5e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.VisualC.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.VisualC.dll
new file mode 100644
index 000000000..a4c833d07
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.VisualC.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Extensions.dll
new file mode 100644
index 000000000..f99ad6475
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Handles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Handles.dll
new file mode 100644
index 000000000..644253c5a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Handles.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.JavaScript.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.JavaScript.dll
new file mode 100644
index 000000000..bd146eaa6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.JavaScript.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll
new file mode 100644
index 000000000..fa0b4c8f3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.dll
new file mode 100644
index 000000000..249823620
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Intrinsics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Intrinsics.dll
new file mode 100644
index 000000000..e2426f378
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Intrinsics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Loader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Loader.dll
new file mode 100644
index 000000000..4ed7c6827
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Loader.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Numerics.dll
new file mode 100644
index 000000000..42f487b3f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Numerics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Formatters.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Formatters.dll
new file mode 100644
index 000000000..54937f969
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Formatters.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Json.dll
new file mode 100644
index 000000000..d3b2a9406
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Primitives.dll
new file mode 100644
index 000000000..b54b64b56
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Xml.dll
new file mode 100644
index 000000000..7f9710637
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Xml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.dll
new file mode 100644
index 000000000..dd519d85a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.dll
new file mode 100644
index 000000000..55c68aaf3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.AccessControl.dll
new file mode 100644
index 000000000..4c5812573
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.AccessControl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Claims.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Claims.dll
new file mode 100644
index 000000000..4b9384d8e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Claims.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Algorithms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Algorithms.dll
new file mode 100644
index 000000000..ce4aeb6ad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Algorithms.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Cng.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Cng.dll
new file mode 100644
index 000000000..b8ca049d9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Cng.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Csp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Csp.dll
new file mode 100644
index 000000000..6742fd650
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Csp.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Encoding.dll
new file mode 100644
index 000000000..4f6382771
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Encoding.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.OpenSsl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.OpenSsl.dll
new file mode 100644
index 000000000..8cea46393
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.OpenSsl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Primitives.dll
new file mode 100644
index 000000000..f37ccdcbd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.X509Certificates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.X509Certificates.dll
new file mode 100644
index 000000000..0dc496dd5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.X509Certificates.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.dll
new file mode 100644
index 000000000..e77c70d44
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.Windows.dll
new file mode 100644
index 000000000..6123f6044
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.Windows.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.dll
new file mode 100644
index 000000000..1b945981b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.SecureString.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.SecureString.dll
new file mode 100644
index 000000000..3a582326f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.SecureString.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.dll
new file mode 100644
index 000000000..1a68f36f0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceModel.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceModel.Web.dll
new file mode 100644
index 000000000..f2fe663d5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceModel.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceProcess.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceProcess.dll
new file mode 100644
index 000000000..2dc92be7e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceProcess.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.CodePages.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.CodePages.dll
new file mode 100644
index 000000000..0a24f1455
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.CodePages.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.Extensions.dll
new file mode 100644
index 000000000..0d78efac3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.dll
new file mode 100644
index 000000000..6751cb4db
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encodings.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encodings.Web.dll
new file mode 100644
index 000000000..f6efbe59e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encodings.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Json.dll
new file mode 100644
index 000000000..1058490d0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.RegularExpressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.RegularExpressions.dll
new file mode 100644
index 000000000..c2d413df6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.RegularExpressions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Channels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Channels.dll
new file mode 100644
index 000000000..8b3424766
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Channels.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Overlapped.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Overlapped.dll
new file mode 100644
index 000000000..849f5ce02
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Overlapped.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Dataflow.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Dataflow.dll
new file mode 100644
index 000000000..c7fc5e3df
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Dataflow.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 000000000..98eeaab42
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Parallel.dll
new file mode 100644
index 000000000..a53e84a9c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Parallel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.dll
new file mode 100644
index 000000000..14c22864c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Thread.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Thread.dll
new file mode 100644
index 000000000..df035b39f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Thread.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.ThreadPool.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.ThreadPool.dll
new file mode 100644
index 000000000..24e2d4d11
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.ThreadPool.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Timer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Timer.dll
new file mode 100644
index 000000000..58ba6c067
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Timer.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.dll
new file mode 100644
index 000000000..46f1605e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.Local.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.Local.dll
new file mode 100644
index 000000000..2bd46dba3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.Local.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.dll
new file mode 100644
index 000000000..befa423e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ValueTuple.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ValueTuple.dll
new file mode 100644
index 000000000..024d67a9c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ValueTuple.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.HttpUtility.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.HttpUtility.dll
new file mode 100644
index 000000000..0d8714c4e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.HttpUtility.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.dll
new file mode 100644
index 000000000..302f53c43
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Windows.dll
new file mode 100644
index 000000000..cc71c5d64
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Windows.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Linq.dll
new file mode 100644
index 000000000..6e46cd77a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Linq.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.ReaderWriter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.ReaderWriter.dll
new file mode 100644
index 000000000..c230b0faf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.ReaderWriter.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Serialization.dll
new file mode 100644
index 000000000..21d796994
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Serialization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XDocument.dll
new file mode 100644
index 000000000..da4f85222
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XDocument.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.XDocument.dll
new file mode 100644
index 000000000..cb5c5218b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.XDocument.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.dll
new file mode 100644
index 000000000..287ee4529
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlDocument.dll
new file mode 100644
index 000000000..e57ad2b93
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlDocument.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlSerializer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlSerializer.dll
new file mode 100644
index 000000000..e8125f9a8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlSerializer.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.dll
new file mode 100644
index 000000000..8f36728e6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.dll
new file mode 100644
index 000000000..36a371e34
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Tavis.UriTemplates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Tavis.UriTemplates.dll
new file mode 100644
index 000000000..733ef6e5c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Tavis.UriTemplates.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/TimeZoneConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/TimeZoneConverter.dll
new file mode 100644
index 000000000..cd3dd5174
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/TimeZoneConverter.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/WindowsBase.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/WindowsBase.dll
new file mode 100644
index 000000000..6047df34c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/WindowsBase.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ZstdSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ZstdSharp.dll
new file mode 100644
index 000000000..8b4fe8260
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ZstdSharp.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.js b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.js
new file mode 100644
index 000000000..133ee2bdf
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.js
@@ -0,0 +1,33 @@
+//! Licensed to the .NET Foundation under one or more agreements.
+//! The .NET Foundation licenses this file to you under the MIT license.
+var __dotnet_runtime=function(e){"use strict";var t="7.0.5",n=false,r="Release";let o,s,i,a,c,u,l,f;const _={},d={};let m;function g(e,t){s=t.internal,i=t.marshaled_imports,o=t.module,w(e),a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread,b.quit=e.quit_,b.ExitStatus=e.ExitStatus,b.requirePromise=e.requirePromise}function w(e){a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread}function h(e){m=e}const p=undefined,b={javaScriptExports:{},mono_wasm_load_runtime_done:false,mono_wasm_bindings_is_ready:false,maxParallelDownloads:16,config:{environmentVariables:{}},diagnosticTracing:false},y=0,v=0,E=0,A=0,S=0,O=0,x=-1,j=0,$=0,N=0,k=0;function T(e){return void 0===e||null===e}const R=[[true,"mono_wasm_register_root","number",["number","number","string"]],[true,"mono_wasm_deregister_root",null,["number"]],[true,"mono_wasm_string_get_data",null,["number","number","number","number"]],[true,"mono_wasm_string_get_data_ref",null,["number","number","number","number"]],[true,"mono_wasm_set_is_debugger_attached","void",["bool"]],[true,"mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]],[true,"mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]],[true,"mono_wasm_setenv",null,["string","string"]],[true,"mono_wasm_parse_runtime_options",null,["number","number"]],[true,"mono_wasm_strdup","number",["string"]],[true,"mono_background_exec",null,[]],[true,"mono_set_timeout_exec",null,[]],[true,"mono_wasm_load_icu_data","number",["number"]],[true,"mono_wasm_get_icudt_name","string",["string"]],[false,"mono_wasm_add_assembly","number",["string","number","number"]],[true,"mono_wasm_add_satellite_assembly","void",["string","string","number","number"]],[false,"mono_wasm_load_runtime",null,["string","number"]],[true,"mono_wasm_change_debugger_log_level","void",["number"]],[true,"mono_wasm_get_corlib","number",[]],[true,"mono_wasm_assembly_load","number",["string"]],[true,"mono_wasm_find_corlib_class","number",["string","string"]],[true,"mono_wasm_assembly_find_class","number",["number","string","string"]],[true,"mono_wasm_runtime_run_module_cctor","void",["number"]],[true,"mono_wasm_find_corlib_type","number",["string","string"]],[true,"mono_wasm_assembly_find_type","number",["number","string","string"]],[true,"mono_wasm_assembly_find_method","number",["number","string","number"]],[true,"mono_wasm_invoke_method","number",["number","number","number","number"]],[false,"mono_wasm_invoke_method_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_string_get_utf8","number",["number"]],[true,"mono_wasm_string_from_utf16_ref","void",["number","number","number"]],[true,"mono_wasm_get_obj_type","number",["number"]],[true,"mono_wasm_array_length","number",["number"]],[true,"mono_wasm_array_get","number",["number","number"]],[true,"mono_wasm_array_get_ref","void",["number","number","number"]],[false,"mono_wasm_obj_array_new","number",["number"]],[false,"mono_wasm_obj_array_new_ref","void",["number","number"]],[false,"mono_wasm_obj_array_set","void",["number","number","number"]],[false,"mono_wasm_obj_array_set_ref","void",["number","number","number"]],[true,"mono_wasm_register_bundled_satellite_assemblies","void",[]],[false,"mono_wasm_try_unbox_primitive_and_get_type_ref","number",["number","number","number"]],[true,"mono_wasm_box_primitive_ref","void",["number","number","number","number"]],[true,"mono_wasm_intern_string_ref","void",["number"]],[true,"mono_wasm_assembly_get_entry_point","number",["number"]],[true,"mono_wasm_get_delegate_invoke_ref","number",["number"]],[true,"mono_wasm_string_array_new_ref","void",["number","number"]],[true,"mono_wasm_typed_array_new_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_class_get_type","number",["number"]],[true,"mono_wasm_type_get_class","number",["number"]],[true,"mono_wasm_get_type_name","string",["number"]],[true,"mono_wasm_get_type_aqn","string",["number"]],[true,"mono_wasm_event_pipe_enable","bool",["string","number","number","string","bool","number"]],[true,"mono_wasm_event_pipe_session_start_streaming","bool",["number"]],[true,"mono_wasm_event_pipe_session_disable","bool",["number"]],[true,"mono_wasm_diagnostic_server_create_thread","bool",["string","number"]],[true,"mono_wasm_diagnostic_server_thread_attach_to_runtime","void",[]],[true,"mono_wasm_diagnostic_server_post_resume_runtime","void",[]],[true,"mono_wasm_diagnostic_server_create_stream","number",[]],[true,"mono_wasm_string_from_js","number",["string"]],[false,"mono_wasm_exit","void",["number"]],[true,"mono_wasm_getenv","number",["string"]],[true,"mono_wasm_set_main_args","void",["number","number"]],[false,"mono_wasm_enable_on_demand_gc","void",["number"]],[false,"mono_profiler_init_aot","void",["number"]],[false,"mono_wasm_exec_regression","number",["number","string"]],[false,"mono_wasm_invoke_method_bound","number",["number","number"]],[true,"mono_wasm_write_managed_pointer_unsafe","void",["number","number"]],[true,"mono_wasm_copy_managed_pointer","void",["number","number"]],[true,"mono_wasm_i52_to_f64","number",["number","number"]],[true,"mono_wasm_u52_to_f64","number",["number","number"]],[true,"mono_wasm_f64_to_i52","number",["number","number"]],[true,"mono_wasm_f64_to_u52","number",["number","number"]]],M={};function I(){const e=!!f;for(const t of R){const n=M,[r,s,i,a,c]=t;if(r||e)n[s]=function(...e){const t=o.cwrap(s,i,a,c);return n[s]=t,t(...e)};else{const e=o.cwrap(s,i,a,c);n[s]=e}}}function D(e,t,n){const r=C(e,t,n);let o="",s=0,i=0,a=0,c=0,u=0,l=0;const f=16777215,_=262143,d=4095,m=63,g=18,w=12,h=6,p=0;for(;s=r.read(),i=r.read(),a=r.read(),null!==s;)null===i&&(i=0,u+=1),null===a&&(a=0,u+=1),l=s<<16|i<<8|a<<0,c=(l&f)>>g,o+=U[c],c=(l&_)>>w,o+=U[c],u<2&&(c=(l&d)>>6,o+=U[c]),2===u?o+="==":1===u?o+="=":(c=(l&m)>>0,o+=U[c]);return o}const U=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"];function C(e,t,n){let r="number"===typeof t?t:0,o;o="number"===typeof n?r+n:e.length-r;const s={read:function(){if(r>=o)return null;const t=e[r];return r+=1,t}};return Object.defineProperty(s,"eof",{get:function(){return r>=o},configurable:true,enumerable:true}),s}const P=new Map;P.remove=function(e){const t=this.get(e);return this.delete(e),t};let W={},F=0,B=-1,V,H,z;function mono_wasm_runtime_ready(){if(s.mono_wasm_runtime_is_ready=b.mono_wasm_runtime_is_ready=true,F=0,W={},B=-1,globalThis.dotnetDebugger)debugger;else console.debug("mono_wasm_runtime_ready","fe00e07a-5519-4dfe-b35a-f867dbaf2e28")}function mono_wasm_fire_debugger_agent_message(){debugger}function L(e,t,n,r){const s=undefined,i=undefined,a={res_ok:e,res:{id:t,value:D(new Uint8Array(o.HEAPU8.buffer,n,r))}};P.has(t)&&console.warn(`MONO_WASM: Adding an id (${t}) that already exists in commands_received`),P.set(t,a)}function J(e){e.length>B&&(V&&o._free(V),B=Math.max(e.length,B,256),V=o._malloc(B));const t=atob(e);for(let e=0;e{const t=setInterval((()=>{1==b.waitForDebugger&&(clearInterval(t),e())}),100)}))}function te(){-1==b.waitForDebugger&&(b.waitForDebugger=1),M.mono_wasm_set_is_debugger_attached(true)}function ne(e,t){H=o.UTF8ToString(e).concat(".dll"),z=t,console.assert(true,`Adding an entrypoint breakpoint ${H} at method token ${z}`);debugger}function re(e,t){if(e.startsWith("dotnet:array:")){let e;if(void 0===t.items)return e=t.map((e=>e.value)),e;if(void 0===t.dimensionsDetails||1===t.dimensionsDetails.length)return e=t.items.map((e=>e.value)),e}const n={};return Object.keys(t).forEach((e=>{const r=t[e];void 0!==r.get?Object.defineProperty(n,r.name,{get(){return G(r.get.id,r.get.commandSet,r.get.command,r.get.buffer)},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):void 0!==r.set?Object.defineProperty(n,r.name,{get(){return r.value},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):n[r.name]=r.value})),n}function oe(e){if(void 0!=e.arguments&&!Array.isArray(e.arguments))throw new Error(`"arguments" should be an array, but was ${e.arguments}`);const t=e.objectId,n=e.details;let r={};if(t.startsWith("dotnet:cfo_res:")){if(!(t in W))throw new Error(`Unknown object id ${t}`);r=W[t]}else r=re(t,n);const o=void 0!=e.arguments?e.arguments.map((e=>JSON.stringify(e.value))):[],s=`const fn = ${e.functionDeclaration}; return fn.apply(proxy, [${o}]);`,i=undefined,a=new Function("proxy",s)(r);if(void 0===a)return{type:"undefined"};if(Object(a)!==a)return"object"==typeof a&&null==a?{type:typeof a,subtype:`${a}`,value:null}:{type:typeof a,description:`${a}`,value:`${a}`};if(e.returnByValue&&void 0==a.subtype)return{type:"object",value:a};if(Object.getPrototypeOf(a)==Array.prototype){const e=ae(a);return{type:"object",subtype:"array",className:"Array",description:`Array(${a.length})`,objectId:e}}if(void 0!==a.value||void 0!==a.subtype)return a;if(a==r)return{type:"object",className:"Object",description:"Object",objectId:t};const c=undefined;return{type:"object",className:"Object",description:"Object",objectId:ae(a)}}function se(e,t){if(!(e in W))throw new Error(`Could not find any object with id ${e}`);const n=W[e],r=Object.getOwnPropertyDescriptors(n);t.accessorPropertiesOnly&&Object.keys(r).forEach((e=>{void 0===r[e].get&&Reflect.deleteProperty(r,e)}));const o=[];return Object.keys(r).forEach((e=>{let t;const n=r[e];t="object"==typeof n.value?Object.assign({name:e},n):void 0!==n.value?{name:e,value:Object.assign({type:typeof n.value,description:""+n.value},n)}:void 0!==n.get?{name:e,get:{className:"Function",description:`get ${e} () {}`,type:"function"}}:{name:e,value:{type:"symbol",value:"",description:""}},o.push(t)})),{__value_as_json_string__:JSON.stringify(o)}}function ie(e,t={}){return se(`dotnet:cfo_res:${e}`,t)}function ae(e){const t="dotnet:cfo_res:"+F++;return W[t]=e,t}function ce(e){e in W&&delete W[e]}function ue(e,t){const n=o.UTF8ToString(t);if(s.logging&&"function"===typeof s.logging.debugger)return s.logging.debugger(e,n),void 0}let le=0;function fe(e){const t=1===M.mono_wasm_load_icu_data(e);return t&&le++,t}function _e(e){return M.mono_wasm_get_icudt_name(e)}function de(){const e=b.config;let t=false;if(e.globalizationMode||(e.globalizationMode="auto"),"invariant"===e.globalizationMode&&(t=true),!t)if(le>0)b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode");else{if("icu"===e.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives were loaded";throw o.printErr(`MONO_WASM: ERROR: ${e}`),new Error(e)}b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode"),t=true}t&&M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1"),M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY","1")}function me(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="System.Runtime.InteropServices.JavaScript.JavaScriptExports::StopProfile"),"sendTo"in e||(e.sendTo="Interop/Runtime::DumpAotProfileData");const t="aot:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_aot",null,["string"],[t])}function ge(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="WebAssembly.Runtime::StopProfile"),"sendTo"in e||(e.sendTo="WebAssembly.Runtime::DumpCoverageProfileData");const t="coverage:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_coverage",null,["string"],[t])}const we=new Map,he=new Map;let pe=0;function be(e){if(we.has(e))return we.get(e);const t=M.mono_wasm_assembly_load(e);return we.set(e,t),t}function ye(e,t,n){let r=he.get(e);r||he.set(e,r=new Map);let o=r.get(t);return o||(o=new Map,r.set(t,o)),o.get(n)}function ve(e,t,n,r){const o=he.get(e);if(!o)throw new Error("internal error");const s=o.get(t);if(!s)throw new Error("internal error");s.set(n,r)}function Ee(e,t,n){pe||(pe=M.mono_wasm_get_corlib());let r=ye(pe,e,t);if(void 0!==r)return r;if(r=M.mono_wasm_assembly_find_class(pe,e,t),n&&!r)throw new Error(`Failed to find corlib class ${e}.${t}`);return ve(pe,e,t,r),r}
+//! Licensed to the .NET Foundation under one or more agreements.
+const Ae=new Map,Se=[];function Oe(e){try{if(0==Ae.size)return e;const t=e;for(let n=0;n{const n=t.find((e=>"object"==typeof e&&void 0!==e.replaceSection));if(void 0===n)return e;const r=n.funcNum,o=n.replaceSection,s=Ae.get(Number(r));return void 0===s?e:e.replace(o,`${s} (${o})`)}));if(r!==t)return r}return t}catch(t){return console.debug(`MONO_WASM: failed to symbolicate: ${t}`),e}}function xe(e){let t=e;return t instanceof Error||(t=new Error(t)),Oe(t.stack)}function je(e,t,n,r,i){const a=o.UTF8ToString(n),c=!!r,u=o.UTF8ToString(e),l=i,f=o.UTF8ToString(t),_=`[MONO] ${a}`;if(s.logging&&"function"===typeof s.logging.trace)return s.logging.trace(u,f,_,c,l),void 0;switch(f){case"critical":case"error":console.error(xe(_));break;case"warning":console.warn(_);break;case"message":console.log(_);break;case"info":console.info(_);break;case"debug":console.debug(_);break;default:console.log(_);break}}let $e;function Ne(e,t,n){const r={log:t.log,error:t.error},o=t;function s(t,n,o){return function(...s){try{let r=s[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"===typeof r)r=r.toString();else if("string"!==typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}"string"===typeof r&&"main"!==e&&(r=`[${e}] ${r}`),n(o?JSON.stringify({method:t,payload:r,arguments:s}):[t+r,...s.slice(1)])}catch(e){r.error(`proxyConsole failed: ${e}`)}}}const i=["debug","trace","warn","info","error"];for(const e of i)"function"!==typeof o[e]&&(o[e]=s(`console.${e}: `,t.log,false));const a=`${n}/console`.replace("https://","wss://").replace("http://","ws://");$e=new WebSocket(a),$e.addEventListener("open",(()=>{r.log(`browser: [${e}] Console websocket connected.`)})),$e.addEventListener("error",(t=>{r.error(`[${e}] websocket error: ${t}`,t)})),$e.addEventListener("close",(t=>{r.error(`[${e}] websocket closed: ${t}`,t)}));const c=e=>{$e.readyState===WebSocket.OPEN?$e.send(e):r.log(e)};for(const e of["log",...i])o[e]=s(`console.${e}`,c,true)}function ke(e){if(!b.mono_wasm_symbols_are_ready){b.mono_wasm_symbols_are_ready=true;try{const t=undefined;o.FS_readFile(e,{flags:"r",encoding:"utf8"}).split(/[\r\n]/).forEach((e=>{const t=e.split(/:/);t.length<2||(t[1]=t.splice(1).join(":"),Ae.set(Number(t[0]),t[1]))}))}catch(t){return 44==t.errno||console.log(`MONO_WASM: Error loading symbol file ${e}: ${JSON.stringify(t)}`),void 0}}}async function Te(e,t){try{const n=await Re(e,t);return De(n),n}catch(e){return e instanceof b.ExitStatus?e.status:(De(1,e),1)}}async function Re(e,t){Ic(e,t),-1==b.waitForDebugger&&(console.log("MONO_WASM: waiting for debugger..."),await ee());const n=Me(e);return b.javaScriptExports.call_entry_point(n,t)}function Me(e){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const t=be(e);if(!t)throw new Error("Could not find assembly: "+e);let n=0;1==b.waitForDebugger&&(n=1);const r=M.mono_wasm_assembly_get_entry_point(t,n);if(!r)throw new Error("Could not find entry point for assembly: "+e);return r}function Ie(e){bc(e,false),De(1,e)}function De(e,t){if(b.config.asyncFlushOnExit&&0===e)throw(async()=>{try{await Ue()}finally{Ce(e,t)}})(),b.ExitStatus?new b.ExitStatus(e):t||new Error("Stop with exit code "+e);Ce(e,t)}async function Ue(){try{const e=await import("process"),t=e=>new Promise(((t,n)=>{e.on("error",(e=>n(e))),e.write("",(function(){t()}))})),n=t(e.stderr),r=t(e.stdout);await Promise.all([r,n])}catch(e){console.error(`flushing std* streams failed: ${e}`)}}function Ce(e,t){if(b.ExitStatus&&(!t||t instanceof b.ExitStatus?t=new b.ExitStatus(e):t instanceof Error?o.printErr(s.mono_wasm_stringify_as_error_with_stack(t)):"string"==typeof t?o.printErr(t):o.printErr(JSON.stringify(t))),We(e,t),Pe(e),0!==e||!u){if(!b.quit)throw t;b.quit(e,t)}}function Pe(e){if(u&&b.config.appendElementOnExit){const t=document.createElement("label");t.id="tests_done",e&&(t.style.background="red"),t.innerHTML=e.toString(),document.body.appendChild(t)}}function We(e,t){if(b.config.logExitCode)if(0!=e&&t&&(t instanceof Error?console.error(xe(t)):"string"==typeof t?console.error(t):console.error(JSON.stringify(t))),$e){const t=()=>{0==$e.bufferedAmount?console.log("WASM EXIT "+e):setTimeout(t,100)};t()}else console.log("WASM EXIT "+e)}Se.push(/at (?[^:()]+:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)((?![^)a-fA-F\d])|$)/),Se.push(/(?:WASM \[[\da-zA-Z]+\], (?function #(?[\d]+) \(''\)))/),Se.push(/(?[a-z]+:\/\/[^ )]*:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)/),Se.push(/(?<[^ >]+>[.:]wasm-function\[(?[0-9]+)\])/);const Fe="function"===typeof globalThis.WeakRef;function Be(e){return Fe?new WeakRef(e):{deref:()=>e}}const Ve="function"===typeof globalThis.FinalizationRegistry;let He;const ze=[],Le=[];let Je=1;const qe=new Map;Ve&&(He=new globalThis.FinalizationRegistry(rt));const Ge=Symbol.for("wasm js_owned_gc_handle"),Ye=Symbol.for("wasm cs_owned_js_handle");function Ze(e){return 0!==e&&e!==x?ze[e]:null}function Xe(e){return 0!==e&&e!==x?Ze(e):null}function Qe(e){if(e[Ye])return e[Ye];const t=Le.length?Le.pop():Je++;return ze[t]=e,Object.isExtensible(e)&&(e[Ye]=t),t}function Ke(e){const t=ze[e];if("undefined"!==typeof t&&null!==t){if(globalThis===t)return;"undefined"!==typeof t[Ye]&&(t[Ye]=void 0),ze[e]=void 0,Le.push(e)}}function et(e,t){e[Ge]=t,Ve&&He.register(e,t,e);const n=Be(e);qe.set(t,n)}function tt(e,t){e&&(t=e[Ge],e[Ge]=0,Ve&&He.unregister(e)),0!==t&&qe.delete(t)&&b.javaScriptExports.release_js_owned_object_by_gc_handle(t)}function nt(e){const t=e[Ge];if(!(0!=t))throw new Error("Assert failed: ObjectDisposedException");return t}function rt(e){tt(null,e)}function ot(e){if(!e)return null;const t=qe.get(e);return t?t.deref():null}const st=Symbol.for("wasm promise_control");function it(e,t){let n=null;const r=new Promise((function(r,o){n={isDone:false,promise:null,resolve:t=>{n.isDone||(n.isDone=true,r(t),e&&e())},reject:e=>{n.isDone||(n.isDone=true,o(e),t&&t())}}}));n.promise=r;const o=r;return o[st]=n,{promise:o,promise_control:n}}function at(e){return e[st]}function ct(e){return void 0!==e[st]}function ut(e){if(!ct(e))throw new Error("Assert failed: Promise is not controllable")}const lt=("object"===typeof Promise||"function"===typeof Promise)&&"function"===typeof Promise.resolve;function ft(e){return Promise.resolve(e)===e||("object"===typeof e||"function"===typeof e)&&"function"===typeof e.then}function _t(e){const{promise:t,promise_control:n}=it(),r=undefined;return e().then((e=>n.resolve(e))).catch((e=>n.reject(e))),t}function dt(e){const t=ot(e);if(!t)return;const n=t.promise;if(!!!n)throw new Error(`Assert failed: Expected Promise for GCHandle ${e}`);ut(n);const r=undefined;at(n).reject("OperationCanceledException")}const mt=[],gt=32768;let wt,ht,pt=null;function bt(){wt||(wt=o._malloc(gt),ht=wt)}const yt="undefined"!==typeof BigInt&&"undefined"!==typeof BigInt64Array;function vt(){bt(),mt.push(ht)}function Et(){if(!mt.length)throw new Error("No temp frames have been created at this point");ht=mt.pop()}function At(e,t,n){if(!Number.isSafeInteger(e))throw new Error(`Assert failed: Value is not an integer: ${e} (${typeof e})`);if(!(e>=t&&e<=n))throw new Error(`Assert failed: Overflow: value ${e} is out of ${t} ${n} range`)}function St(e,t){o.HEAP8.fill(0,e,t+e)}function Ot(e,t){const n=!!t;"number"===typeof t&&At(t,0,1),o.HEAP32[e>>>2]=n?1:0}function xt(e,t){At(t,0,255),o.HEAPU8[e]=t}function jt(e,t){At(t,0,65535),o.HEAPU16[e>>>1]=t}function $t(e,t){o.HEAPU32[e>>>2]=t}function Nt(e,t){At(t,0,4294967295),o.HEAPU32[e>>>2]=t}function kt(e,t){At(t,-128,127),o.HEAP8[e]=t}function Tt(e,t){At(t,-32768,32767),o.HEAP16[e>>>1]=t}function Rt(e,t){o.HEAP32[e>>>2]=t}function Mt(e,t){At(t,-2147483648,2147483647),o.HEAP32[e>>>2]=t}function It(e){if(0!==e)switch(e){case 1:throw new Error("value was not an integer");case 2:throw new Error("value out of range");default:throw new Error("unknown internal error")}}function Dt(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);const n=undefined;It(M.mono_wasm_f64_to_i52(e,t))}function Ut(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);if(!(t>=0))throw new Error("Assert failed: Can't convert negative Number into UInt64");const n=undefined;It(M.mono_wasm_f64_to_u52(e,t))}function Ct(e,t){if(!yt)throw new Error("Assert failed: BigInt is not supported.");if(!("bigint"===typeof t))throw new Error(`Assert failed: Value is not an bigint: ${t} (${typeof t})`);if(!(t>=Kt&&t<=Qt))throw new Error(`Assert failed: Overflow: value ${t} is out of ${Kt} ${Qt} range`);pt[e>>>3]=t}function Pt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF32[e>>>2]=t}function Wt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF64[e>>>3]=t}function Ft(e){return!!o.HEAP32[e>>>2]}function Bt(e){return o.HEAPU8[e]}function Vt(e){return o.HEAPU16[e>>>1]}function Ht(e){return o.HEAPU32[e>>>2]}function zt(e){return o.HEAP8[e]}function Lt(e){return o.HEAP16[e>>>1]}function Jt(e){return o.HEAP32[e>>>2]}function qt(e){const t=M.mono_wasm_i52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Gt(e){const t=M.mono_wasm_u52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Yt(e){if(!yt)throw new Error("Assert failed: BigInt is not supported.");return pt[e>>>3]}function Zt(e){return o.HEAPF32[e>>>2]}function Xt(e){return o.HEAPF64[e>>>3]}let Qt,Kt;function en(e){yt&&(Qt=BigInt("9223372036854775807"),Kt=BigInt("-9223372036854775808"),pt=new BigInt64Array(e))}function tn(e){const t=o._malloc(e.length),n=undefined;return new Uint8Array(o.HEAPU8.buffer,t,e.length).set(e),t}const nn=8192;let rn=null,on=null,sn=0;const an=[],cn=[];function un(e,t){if(e<=0)throw new Error("capacity >= 1");const n=4*(e|=0),r=o._malloc(n);if(r%4!==0)throw new Error("Malloc returned an unaligned offset");return St(r,n),new WasmRootBufferImpl(r,e,true,t)}function ln(e){let t;if(!e)throw new Error("address must be a location in the native heap");return cn.length>0?(t=cn.pop(),t._set_address(e)):t=new wn(e),t}function fn(e){let t;if(an.length>0)t=an.pop();else{const e=mn(),n=undefined;t=new gn(rn,e)}if(void 0!==e){if("number"!==typeof e)throw new Error("value must be an address in the managed heap");t.set(e)}else t.set(0);return t}function _n(...e){for(let t=0;t>>2,this.__count=t,this.length=t,this.__handle=M.mono_wasm_register_root(e,o,r||"noname"),this.__ownsAllocation=n}_throw_index_out_of_range(){throw new Error("index out of range")}_check_in_range(e){(e>=this.__count||e<0)&&this._throw_index_out_of_range()}get_address(e){return this._check_in_range(e),this.__offset+4*e}get_address_32(e){return this._check_in_range(e),this.__offset32+e}get(e){this._check_in_range(e);const t=this.get_address_32(e);return o.HEAPU32[t]}set(e,t){const n=this.get_address(e);return M.mono_wasm_write_managed_pointer_unsafe(n,t),t}copy_value_from_address(e,t){const n=this.get_address(e);M.mono_wasm_copy_managed_pointer(n,t)}_unsafe_get(e){return o.HEAPU32[this.__offset32+e]}_unsafe_set(e,t){const n=this.__offset+e;M.mono_wasm_write_managed_pointer_unsafe(n,t)}clear(){this.__offset&&St(this.__offset,4*this.__count)}release(){this.__offset&&this.__ownsAllocation&&(M.mono_wasm_deregister_root(this.__offset),St(this.__offset,4*this.__count),o._free(this.__offset)),this.__handle=this.__offset=this.__count=this.__offset32=0}toString(){return`[root buffer @${this.get_address(0)}, size ${this.__count} ]`}}class gn{constructor(e,t){this.__buffer=e,this.__index=t}get_address(){return this.__buffer.get_address(this.__index)}get_address_32(){return this.__buffer.get_address_32(this.__index)}get address(){return this.__buffer.get_address(this.__index)}get(){const e=undefined;return this.__buffer._unsafe_get(this.__index)}set(e){const t=this.__buffer.get_address(this.__index);return M.mono_wasm_write_managed_pointer_unsafe(t,e),e}copy_from(e){const t=e.address,n=this.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){if(!this.__buffer)throw new Error("No buffer");const e=128;an.length>e?(dn(this.__index),this.__buffer=null,this.__index=0):(this.set(0),an.push(this))}toString(){return`[root @${this.address}]`}}class wn{constructor(e){this.__external_address=0,this.__external_address_32=0,this._set_address(e)}_set_address(e){this.__external_address=e,this.__external_address_32=e>>>2}get address(){return this.__external_address}get_address(){return this.__external_address}get_address_32(){return this.__external_address_32}get(){const e=undefined;return o.HEAPU32[this.__external_address_32]}set(e){return M.mono_wasm_write_managed_pointer_unsafe(this.__external_address,e),e}copy_from(e){const t=e.address,n=this.__external_address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.__external_address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){const e=128;cn.length=r&&(vr=null),vr||(vr=un(r,"interned strings"),Er=0);const o=vr,s=Er++;if(n&&(M.mono_wasm_intern_string_ref(t.address),!t.value))throw new Error("mono_wasm_intern_string_ref produced a null pointer");br.set(e,t.value),pr.set(t.value,e),0!==e.length||yr||(yr=t.value),o.copy_value_from_address(s,t.address)}function Nr(e,t){let n;if("symbol"===typeof e?(n=e.description,"string"!==typeof n&&(n=Symbol.keyFor(e)),"string"!==typeof n&&(n="")):"string"===typeof e&&(n=e),"string"!==typeof n)throw new Error(`Argument to js_string_to_mono_string_interned must be a string but was ${e}`);if(0===n.length&&yr)return t.set(yr),void 0;const r=br.get(n);if(r)return t.set(r),void 0;Tr(n,t),$r(n,t,true)}function kr(e,t){if(t.clear(),null!==e)if("symbol"===typeof e)Nr(e,t);else{if("string"!==typeof e)throw new Error("Expected string argument, got "+typeof e);if(0===e.length)Nr(e,t);else{if(e.length<=256){const n=br.get(e);if(n)return t.set(n),void 0}Tr(e,t)}}}function Tr(e,t){const n=o._malloc(2*(e.length+1)),r=n>>>1|0;for(let t=0;t{const n=On(e,0),a=On(e,1),c=On(e,2),u=On(e,3),l=On(e,4);try{let e,n,f;o&&(e=o(c)),s&&(n=s(u)),i&&(f=i(l));const _=t(e,n,f);r&&r(a,_)}catch(e){eo(n,e)}};a[yn]=true;const c=undefined;cr(e,Qe(a)),Cn(e,wr.Function)}class Qr{constructor(e){this.promise=e}dispose(){tt(this,0)}get isDisposed(){return 0===this[Ge]}}function Kr(e,t,n,r){if(null===t||void 0===t)return Cn(e,wr.None),void 0;if(!ft(t))throw new Error("Assert failed: Value is not a Promise");const o=b.javaScriptExports.create_task_callback();lr(e,o),Cn(e,wr.Task);const s=new Qr(t);et(s,o),t.then((e=>{b.javaScriptExports.complete_task(o,null,e,r||no),tt(s,o)})).catch((e=>{b.javaScriptExports.complete_task(o,e,null,void 0),tt(s,o)}))}function eo(e,t){if(null===t||void 0===t)Cn(e,wr.None);else if(t instanceof ManagedError){Cn(e,wr.Exception);const n=undefined;lr(e,nt(t))}else{if(!("object"===typeof t||"string"===typeof t))throw new Error("Assert failed: Value is not an Error "+typeof t);Cn(e,wr.JSException);const n=undefined;Yr(e,t.toString());const r=t[Ye];if(r)cr(e,r);else{const n=undefined;cr(e,Qe(t))}}}function to(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{if(!(void 0===t[Ge]))throw new Error("Assert failed: JSObject proxy of ManagedObject proxy is not supported");if(!("function"===typeof t||"object"===typeof t))throw new Error(`Assert failed: JSObject proxy of ${typeof t} is not supported`);Cn(e,wr.JSObject);const n=undefined;cr(e,Qe(t))}}function no(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{const n=t[Ge],r=typeof t;if(void 0===n)if("string"===r||"symbol"===r)Cn(e,wr.String),Yr(e,t);else if("number"===r)Cn(e,wr.Double),sr(e,t);else{if("bigint"===r)throw new Error("NotImplementedException: bigint");if("boolean"===r)Cn(e,wr.Boolean),Zn(e,t);else if(t instanceof Date)Cn(e,wr.DateTime),or(e,t);else if(t instanceof Error)eo(e,t);else if(t instanceof Uint8Array)oo(e,t,wr.Byte);else if(t instanceof Float64Array)oo(e,t,wr.Double);else if(t instanceof Int32Array)oo(e,t,wr.Int32);else if(Array.isArray(t))oo(e,t,wr.Object);else{if(t instanceof Int16Array||t instanceof Int8Array||t instanceof Uint8ClampedArray||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Float32Array)throw new Error("NotImplementedException: TypedArray");if(ft(t))Kr(e,t);else{if(t instanceof Span)throw new Error("NotImplementedException: Span");if("object"!=r)throw new Error(`JSObject proxy is not supported for ${r} ${t}`);{const n=Qe(t);Cn(e,wr.JSObject),cr(e,n)}}}}else{if(nt(t),t instanceof ArraySegment)throw new Error("NotImplementedException: ArraySegment");if(t instanceof ManagedError)Cn(e,wr.Exception),lr(e,n);else{if(!(t instanceof ManagedObject))throw new Error("NotImplementedException "+r);Cn(e,wr.Object),lr(e,n)}}}}function ro(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=undefined;oo(e,t,kn(n))}function oo(e,t,n){if(null===t||void 0===t)Cn(e,wr.None);else{const r=mr(n);if(!(-1!=r))throw new Error(`Assert failed: Element type ${wr[n]} not supported`);const s=t.length,i=r*s,a=o._malloc(i);if(n==wr.String){if(!Array.isArray(t))throw new Error("Assert failed: Value is not an Array");St(a,i),M.mono_wasm_register_root(a,i,"marshal_array_to_cs");for(let e=0;e>2,(a>>2)+s).set(t)}else{if(n!=wr.Double)throw new Error("not implemented");{if(!(Array.isArray(t)||t instanceof Float64Array))throw new Error("Assert failed: Value is not an Array or Float64Array");const e=undefined;o.HEAPF64.subarray(a>>3,(a>>3)+s).set(t)}}tr(e,a),Cn(e,wr.Array),Pn(e,n),dr(e,t.length)}}function so(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");if(!!t.isDisposed)throw new Error("Assert failed: ObjectDisposedException");ao(n,t._viewType),Cn(e,wr.Span),tr(e,t._pointer),dr(e,t.length)}function io(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=nt(t);if(!r)throw new Error("Assert failed: Only roundtrip of ArraySegment instance created by C#");ao(n,t._viewType),Cn(e,wr.ArraySegment),tr(e,t._pointer),dr(e,t.length),lr(e,r)}function ao(e,t){const n=kn(e);if(n==wr.Byte){if(!(0==t))throw new Error("Assert failed: Expected MemoryViewType.Byte")}else if(n==wr.Int32){if(!(1==t))throw new Error("Assert failed: Expected MemoryViewType.Int32")}else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);if(!(2==t))throw new Error("Assert failed: Expected MemoryViewType.Double")}}function co(){0==hn.size&&(hn.set(wr.Array,ko),hn.set(wr.Span,Ro),hn.set(wr.ArraySegment,Mo),hn.set(wr.Boolean,lo),hn.set(wr.Byte,fo),hn.set(wr.Char,_o),hn.set(wr.Int16,mo),hn.set(wr.Int32,go),hn.set(wr.Int52,wo),hn.set(wr.BigInt64,ho),hn.set(wr.Single,po),hn.set(wr.IntPtr,yo),hn.set(wr.Double,bo),hn.set(wr.String,xo),hn.set(wr.Exception,jo),hn.set(wr.JSException,jo),hn.set(wr.JSObject,$o),hn.set(wr.Object,No),hn.set(wr.DateTime,Eo),hn.set(wr.DateTimeOffset,Eo),hn.set(wr.Task,So),hn.set(wr.Action,Ao),hn.set(wr.Function,Ao),hn.set(wr.None,vo),hn.set(wr.Void,vo),hn.set(wr.Discard,vo))}function uo(e,t,n,r,o,s){let i="",a="",c="";const u="converter"+t;let l="null",f="null",_="null",d="null",m=$n(e);if(m===wr.None||m===wr.Void)return{converters:i,call_body:c,marshaler_type:m};const g=Nn(e);if(g!==wr.None){const e=hn.get(g);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${g} at ${t}`);m!=wr.Nullable?(d="converter"+t+"_res",i+=", "+d,a+=" "+wr[g],s[d]=e):m=g}const w=kn(e);if(w!==wr.None){const e=pn.get(w);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${w} at ${t}`);l="converter"+t+"_arg1",i+=", "+l,a+=" "+wr[w],s[l]=e}const h=Tn(e);if(h!==wr.None){const e=pn.get(h);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${h} at ${t}`);f="converter"+t+"_arg2",i+=", "+f,a+=" "+wr[h],s[f]=e}const p=Rn(e);if(p!==wr.None){const e=pn.get(p);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${p} at ${t}`);_="converter"+t+"_arg3",i+=", "+_,a+=" "+wr[p],s[_]=e}const b=hn.get(m);if(!(b&&"function"===typeof b))throw new Error(`Assert failed: Unknow converter for type ${m} at ${t} `);return i+=", "+u,a+=" "+wr[m],s[u]=b,c=m==wr.Task?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}); // ${a} \n`:m==wr.Action||m==wr.Function?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}, ${l}, ${f}, ${_}); // ${a} \n`:` const ${o} = ${u}(args + ${n}, signature + ${r}); // ${a} \n`,{converters:i,call_body:c,marshaler_type:m}}function lo(e){const t=undefined;return Dn(e)==wr.None?null:Wn(e)}function fo(e){const t=undefined;return Dn(e)==wr.None?null:Fn(e)}function _o(e){const t=undefined;return Dn(e)==wr.None?null:Bn(e)}function mo(e){const t=undefined;return Dn(e)==wr.None?null:Vn(e)}function go(e){const t=undefined;return Dn(e)==wr.None?null:Hn(e)}function wo(e){const t=undefined;return Dn(e)==wr.None?null:Ln(e)}function ho(e){const t=undefined;return Dn(e)==wr.None?null:Jn(e)}function po(e){const t=undefined;return Dn(e)==wr.None?null:Gn(e)}function bo(e){const t=undefined;return Dn(e)==wr.None?null:Yn(e)}function yo(e){const t=undefined;return Dn(e)==wr.None?null:zn(e)}function vo(){return null}function Eo(e){const t=undefined;return Dn(e)===wr.None?null:qn(e)}function Ao(e,t,n,r,o,s){const i=undefined;if(Dn(e)===wr.None)return null;const a=ur(e);let c=ot(a);return null!==c&&void 0!==c||(c=(e,t,i)=>b.javaScriptExports.call_delegate(a,e,t,i,n,r,o,s),et(c,a)),c}function So(e,t,n){const r=Dn(e);if(r===wr.None)return null;if(r!==wr.Task){if(n||(n=hn.get(r)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[r]} `);const t=n(e);return new Promise((e=>e(t)))}const o=ar(e);if(0==o)return new Promise((e=>e(void 0)));const s=Ze(o);if(!!!s)throw new Error(`Assert failed: ERR28: promise not found for js_handle: ${o} `);ut(s);const i=at(s),a=i.resolve;return i.resolve=e=>{const t=Dn(e);if(t===wr.None)return a(null),void 0;if(n||(n=hn.get(t)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[t]}`);const r=n(e);a(r)},s}function Oo(e){const t=On(e,0),n=On(e,1),r=On(e,2),o=On(e,3),s=Dn(t),i=Dn(o),a=ar(r);if(0===a){const{promise:e,promise_control:r}=it(),a=undefined;if(cr(n,Qe(e)),s!==wr.None){const e=jo(t);r.reject(e)}else if(i!==wr.Task){const e=hn.get(i);if(!e)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[i]} `);const t=e(o);r.resolve(t)}}else{const e=Ze(a);if(!!!e)throw new Error(`Assert failed: ERR25: promise not found for js_handle: ${a} `);ut(e);const n=at(e);if(s!==wr.None){const e=jo(t);n.reject(e)}else i!==wr.Task&&n.resolve(o)}Cn(n,wr.Task),Cn(t,wr.None)}function xo(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=fr(e);try{const e=undefined;return xr(n)}finally{n.release()}}function jo(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSException){const t=undefined,n=undefined;return Ze(ar(e))}const n=ur(e);let r=ot(n);if(null===r||void 0===r){const t=xo(e);r=new ManagedError(t),et(r,n)}return r}function $o(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=undefined,r=undefined;return Ze(ar(e))}function No(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSObject){const t=undefined,n=undefined;return Ze(ar(e))}if(t==wr.Array){const t=undefined;return To(e,Un(e))}if(t==wr.Object){const t=ur(e);if(0===t)return null;let n=ot(t);return n||(n=new ManagedObject,et(n,t)),n}const n=hn.get(t);if(!n)throw new Error(`Assert failed: Unknow converter for type ${wr[t]}`);return n(e)}function ko(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=undefined;return To(e,kn(t))}function To(e,t){const n=undefined;if(Dn(e)==wr.None)return null;const r=undefined;if(!(-1!=mr(t)))throw new Error(`Assert failed: Element type ${wr[t]} not supported`);const s=zn(e),i=_r(e);let a=null;if(t==wr.String){a=new Array(i);for(let e=0;e>2,(s>>2)+i).slice()}else{if(t!=wr.Double)throw new Error(`NotImplementedException ${wr[t]} `);{const e=undefined;a=o.HEAPF64.subarray(s>>3,(s>>3)+i).slice()}}return o._free(s),a}function Ro(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new Span(r,o,0);else if(n==wr.Int32)s=new Span(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new Span(r,o,2)}return s}function Mo(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new ArraySegment(r,o,0);else if(n==wr.Int32)s=new ArraySegment(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new ArraySegment(r,o,2)}const i=undefined;return et(s,ur(e)),s}let Io,Do;const Uo={};function Co(e){Io=e.mono,Do=e.binding}const Po=Symbol.for("wasm type");function Wo(e){return new Promise((t=>setTimeout(t,e)))}const Fo=it(),Bo=it();let Vo=0,Ho=0,zo=0,Lo=0;const Jo=[],qo=Object.create(null);let Go=0,Yo;const Zo={"js-module-threads":true},Xo={dotnetwasm:true},Qo={"js-module-threads":true,dotnetwasm:true};function Ko(e){var t;const n=null===(t=b.config.assets)||void 0===t?void 0:t.find((t=>t.behavior==e));if(!n)throw new Error(`Assert failed: Can't find asset for ${e}`);return n.resolvedUrl||(n.resolvedUrl=os(n,"")),n}async function es(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_download_assets"),b.maxParallelDownloads=b.config.maxParallelDownloads||b.maxParallelDownloads;try{const e=[];for(const t of b.config.assets){const n=t;if(Qo[n.behavior]||Lo++,!Zo[n.behavior]){const t=Xo[n.behavior];if(zo++,n.pendingDownload){n.pendingDownloadInternal=n.pendingDownload;const r=async()=>{const e=await n.pendingDownloadInternal.response;return t||(n.buffer=await e.arrayBuffer()),++Vo,{asset:n,buffer:n.buffer}};e.push(r())}else{const r=async()=>(n.buffer=await ts(n,!t),{asset:n,buffer:n.buffer});e.push(r())}}}Bo.promise_control.resolve();const t=[];for(const n of e)t.push((async()=>{const e=await n,t=e.asset;if(e.buffer){if(!Qo[t.behavior]){const n=t.pendingDownloadInternal.url,r=new Uint8Array(t.buffer);t.pendingDownloadInternal=null,t.pendingDownload=null,t.buffer=null,e.buffer=null,await lc.promise,is(t,n,r)}}else{const e=undefined;if(Xo[t.behavior])Xo[t.behavior]&&++Vo;else{if(!t.isOptional)throw new Error("Assert failed: Expected asset to have the downloaded buffer");Zo[t.behavior]||zo--,Qo[t.behavior]||Lo--}}})());Promise.all(t).then((()=>{Fo.promise_control.resolve()})).catch((e=>{o.printErr("MONO_WASM: Error in mono_download_assets: "+e),bc(e,true)}))}catch(e){throw o.printErr("MONO_WASM: Error in mono_download_assets: "+e),e}}async function ts(e,t){try{return await ns(e,t)}catch(n){if(c||a)throw n;if(e.pendingDownload&&e.pendingDownloadInternal==e.pendingDownload)throw n;if(e.resolvedUrl&&-1!=e.resolvedUrl.indexOf("file://"))throw n;if(n&&404==n.status)throw n;e.pendingDownloadInternal=void 0,await Bo.promise;try{return await ns(e,t)}catch(n){return e.pendingDownloadInternal=void 0,await Wo(100),await ns(e,t)}}}async function ns(e,t){for(;Yo;)await Yo.promise;try{++Go,Go==b.maxParallelDownloads&&(b.diagnosticTracing&&console.debug("MONO_WASM: Throttling further parallel downloads"),Yo=it());const n=await rs(e);if(!t||!n)return;const r=await n.arrayBuffer();return++Vo,r}finally{if(--Go,Yo&&Go==b.maxParallelDownloads-1){b.diagnosticTracing&&console.debug("MONO_WASM: Resuming more parallel downloads");const e=Yo;Yo=void 0,e.promise_control.resolve()}}}async function rs(e){if(e.buffer){const t=e.buffer;return e.buffer=null,e.pendingDownloadInternal={url:"undefined://"+e.name,name:e.name,response:Promise.resolve({arrayBuffer:()=>t,headers:{get:()=>{}}})},e.pendingDownloadInternal.response}if(e.pendingDownloadInternal&&e.pendingDownloadInternal.response){const t=undefined;return await e.pendingDownloadInternal.response}const t=e.loadRemote&&b.config.remoteSources?b.config.remoteSources:[""];let n;for(let r of t){r=r.trim(),"./"===r&&(r="");const t=os(e,r);e.name===t?b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}'`):b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}' for ${e.name}`);try{const r=ss({name:e.name,resolvedUrl:t,hash:e.hash,behavior:e.behavior});if(e.pendingDownloadInternal=r,n=await r.response,!n.ok)continue;return n}catch(e){continue}}const r=e.isOptional||e.name.match(/\.pdb$/)&&b.config.ignorePdbLoadErrors;if(!n)throw new Error(`Assert failed: Response undefined ${e.name}`);if(r)return o.print(`MONO_WASM: optional download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`),void 0;{const t=new Error(`MONO_WASM: download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`);throw t.status=n.status,t}}function os(e,t){if(!(null!==t&&void 0!==t))throw new Error(`Assert failed: sourcePrefix must be provided for ${e.name}`);let n;const r=b.config.assemblyRootFolder;if(e.resolvedUrl)n=e.resolvedUrl;else{if(""===t)if("assembly"===e.behavior||"pdb"===e.behavior)n=r?r+"/"+e.name:e.name;else if("resource"===e.behavior){const t=e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name;n=r?r+"/"+t:t}else n=e.name;else n=t+e.name;n=b.locateFile(n)}if(!(n&&"string"==typeof n))throw new Error("Assert failed: attemptUrl need to be path or url string");return n}function ss(e){try{if("function"===typeof o.downloadResource){const t=o.downloadResource(e);if(t)return t}const t={};e.hash&&(t.integrity=e.hash);const n=b.fetch_like(e.resolvedUrl,t);return{name:e.name,url:e.resolvedUrl,response:n}}catch(t){const n={ok:false,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(n)}}}function is(e,t,n){b.diagnosticTracing&&console.debug(`MONO_WASM: Loaded:${e.name} as ${e.behavior} size ${n.length} from ${t}`);const r="string"===typeof e.virtualPath?e.virtualPath:e.name;let s=null;switch(e.behavior){case"dotnetwasm":case"js-module-threads":break;case"resource":case"assembly":case"pdb":Jo.push({url:t,file:r});case"heap":case"icu":s=tn(n),qo[r]=[s,n.length];break;case"vfs":{const e=r.lastIndexOf("/");let t=e>0?r.substr(0,e):null,s=e>0?r.substr(e+1):r;s.startsWith("/")&&(s=s.substr(1)),t?(b.diagnosticTracing&&console.debug(`MONO_WASM: Creating directory '${t}'`),o.FS_createPath("/",t,true,true)):t="/",b.diagnosticTracing&&console.debug(`MONO_WASM: Creating file '${s}' in directory '${t}'`),cs(n,t)||o.FS_createDataFile(t,s,n,true,true,true);break}default:throw new Error(`Unrecognized asset behavior:${e.behavior}, for asset ${e.name}`)}if("assembly"===e.behavior){const e=undefined;if(!M.mono_wasm_add_assembly(r,s,n.length)){const e=Jo.findIndex((e=>e.file==r));Jo.splice(e,1)}}else"icu"===e.behavior?fe(s)||o.printErr(`MONO_WASM: Error loading ICU asset ${e.name}`):"resource"===e.behavior&&M.mono_wasm_add_satellite_assembly(r,e.culture||"",s,n.length);++Ho}async function as(e,t,n){if(!(e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response))throw new Error("Assert failed: Can't load dotnet.wasm");const r=await e.pendingDownloadInternal.response,o=r.headers&&r.headers.get?r.headers.get("Content-Type"):void 0;let s,i;if("function"===typeof WebAssembly.instantiateStreaming&&"application/wasm"===o){b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module streaming");const e=await WebAssembly.instantiateStreaming(r,t);s=e.instance,i=e.module}else{u&&"application/wasm"!==o&&console.warn('MONO_WASM: WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await r.arrayBuffer();b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module buffered");const n=await WebAssembly.instantiate(e,t);s=n.instance,i=n.module}n(s,i)}function cs(e,t){if(e.length<8)return false;const n=new DataView(e.buffer),r=undefined;if(1651270004!=n.getUint32(0,true))return false;const s=n.getUint32(4,true);if(0==s||e.length{const t=e[0],n=t.lastIndexOf("/"),r=t.slice(0,n+1);a.add(r)})),a.forEach((e=>{o.FS_createPath(t,e,true,true)}));for(const n of i){const r=n[0],s=n[1],i=e.slice(0,s);o.FS_createDataFile(t,r,i,true,true),e=e.slice(s)}return true}async function us(){if(await Fo.promise,b.config.assets){if(!(Vo==zo))throw new Error(`Assert failed: Expected ${zo} assets to be downloaded, but only finished ${Vo}`);if(!(Ho==Lo))throw new Error(`Assert failed: Expected ${Lo} assets to be in memory, but only instantiated ${Ho}`);Jo.forEach((e=>Io.loaded_files.push(e.url))),b.diagnosticTracing&&console.debug("MONO_WASM: all assets are loaded in wasm memory")}}function ls(){return Io.loaded_files}let fs,_s;function ds(e){const t=o;"undefined"===typeof globalThis.performance&&(globalThis.performance=gs),"undefined"===typeof globalThis.URL&&(globalThis.URL=class e{constructor(e){this.url=e}toString(){return this.url}});const n=t.imports=o.imports||{},r=e=>t=>{const n=o.imports[t];return n||e(t)};n.require?b.requirePromise=e.requirePromise=Promise.resolve(r(n.require)):e.require?b.requirePromise=e.requirePromise=Promise.resolve(r(e.require)):e.requirePromise?b.requirePromise=e.requirePromise.then((e=>r(e))):b.requirePromise=e.requirePromise=Promise.resolve(r((e=>{throw new Error(`Please provide Module.imports.${e} or Module.imports.require`)}))),b.scriptDirectory=e.scriptDirectory=bs(e),t.mainScriptUrlOrBlob=e.scriptUrl,t.__locateFile===t.locateFile?t.locateFile=b.locateFile=e=>Es(e)?e:b.scriptDirectory+e:b.locateFile=t.locateFile,n.fetch?e.fetch=b.fetch_like=n.fetch:e.fetch=b.fetch_like=ws,e.noExitRuntime=u;const s=e.updateGlobalBufferAndViews;e.updateGlobalBufferAndViews=e=>{s(e),en(e)}}async function ms(){if(a){if(s.require=await b.requirePromise,globalThis.performance===gs){const{performance:e}=s.require("perf_hooks");globalThis.performance=e}if(globalThis.crypto||(globalThis.crypto={}),!globalThis.crypto.getRandomValues){let e;try{e=s.require("node:crypto")}catch(e){}e?e.webcrypto?globalThis.crypto=e.webcrypto:e.randomBytes&&(globalThis.crypto.getRandomValues=t=>{t&&t.set(e.randomBytes(t.length))}):globalThis.crypto.getRandomValues=()=>{throw new Error("Using node without crypto support. To enable current operation, either provide polyfill for 'globalThis.crypto.getRandomValues' or enable 'node:crypto' module.")}}}}const gs={now:function(){return Date.now()}};async function ws(e,t){try{if(a){if(!fs){const e=await b.requirePromise;_s=e("url"),fs=e("fs")}e.startsWith("file://")&&(e=_s.fileURLToPath(e));const t=await fs.promises.readFile(e);return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(t)}}if("function"===typeof globalThis.fetch)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"===typeof read){const t=new Uint8Array(read(e,"binary"));return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(o.UTF8ArrayToString(t,0,t.length))}}}catch(t){return{ok:false,url:e,status:500,statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}}}throw new Error("No fetch implementation available")}function hs(e){return e.replace(/\\/g,"/").replace(/[?#].*/,"")}function ps(e){return e.slice(0,e.lastIndexOf("/"))+"/"}function bs(e){return l&&(e.scriptUrl=self.location.href),e.scriptUrl||(e.scriptUrl="./dotnet.js"),e.scriptUrl=hs(e.scriptUrl),ps(e.scriptUrl)}const ys=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,vs=/[a-zA-Z]:[\\/]/;function Es(e){return a||c?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||vs.test(e):ys.test(e)}function As(e,t,n,r,o,s){const i=ln(e),a=ln(t),c=ln(s);try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const t=xr(i),o=xr(a);b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSImport] ${t} from ${o}`);const s=xs(t,o),u=Mn(n),l={fn:s,marshal_exception_to_cs:eo,signature:n},f="_bound_js_"+t.replace(/\./g,"_");let _=`//# sourceURL=https://dotnet.generated.invalid/${f} \n`,d="",m="",g="";for(let e=0;e{const o=await n;return r&&(Ms.set(e,o),b.diagnosticTracing&&console.debug(`MONO_WASM: imported ES6 module '${e}' from '${t}'`)),o}))}function Ds(e,t){let n="unknown exception";if(t){n=t.toString();const e=t.stack;e&&(e.startsWith(n)?n=e:n+="\n"+e),n=Oe(n)}return e&&o.setValue(e,1,"i32"),n}function Us(e,t,n){const r=undefined;kr(Ds(e,t),n)}const Cs=new Map;function Ps(e,t,n,r,s){const i=ln(e),a=ln(s),c=o;try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const r=Mn(n),o=xr(i);if(!o)throw new Error("Assert failed: fully_qualified_name must be string");b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSExport] ${o}`);const{assembly:s,namespace:u,classname:l,methodname:f}=Hs(o),_=be(s);if(!_)throw new Error("Could not find assembly: "+s);const d=M.mono_wasm_assembly_find_class(_,u,l);if(!d)throw new Error("Could not find class: "+u+":"+l+" in assembly "+s);const m=`__Wrapper_${f}_${t}`,g=M.mono_wasm_assembly_find_method(d,m,-1);if(!g)throw new Error(`Could not find method: ${m} in ${d} [${s}]`);const w={method:g,signature:n,stackSave:c.stackSave,stackRestore:c.stackRestore,alloc_stack_frame:Sn,invoke_method_and_handle_exception:Ws},h="_bound_cs_"+`${u}_${l}_${f}`.replace(/\./g,"_").replace(/\//g,"_");let p=`//# sourceURL=https://dotnet.generated.invalid/${h} \n`,y="",v="";for(let e=0;e{const o=e.stackSave();try{const s=Sn(4),i=On(s,1),a=On(s,2),c=On(s,3);Lr(a,t),n&&0==n.length&&(n=void 0),oo(c,n,wr.String),Ws(r,s);const u=So(i,void 0,go);return u||Promise.resolve(0)}finally{e.stackRestore(o)}},b.javaScriptExports.release_js_owned_object_by_gc_handle=t=>{if(!t)throw new Error("Assert failed: Must be valid gc_handle");const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Object),lr(o,t),Ws(s,r)}finally{e.stackRestore(n)}},b.javaScriptExports.create_task_callback=()=>{const t=e.stackSave();try{const n=Sn(2);Ws(i,n);const r=undefined;return ur(On(n,1))}finally{e.stackRestore(t)}},b.javaScriptExports.complete_task=(t,n,r,o)=>{const s=e.stackSave();try{const i=Sn(5),c=On(i,2);Cn(c,wr.Object),lr(c,t);const u=On(i,3);if(n)eo(u,n);else{Cn(u,wr.None);const e=On(i,4);if(!o)throw new Error("Assert failed: res_converter missing");o(e,r)}Ws(a,i)}finally{e.stackRestore(s)}},b.javaScriptExports.call_delegate=(t,n,r,o,s,i,a,u)=>{const l=e.stackSave();try{const f=Sn(6),_=On(f,2);if(Cn(_,wr.Object),lr(_,t),i){const e=undefined;i(On(f,3),n)}if(a){const e=undefined;a(On(f,4),r)}if(u){const e=undefined;u(On(f,5),o)}if(Ws(c,f),s){const e=undefined;return s(On(f,1))}}finally{e.stackRestore(l)}},b.javaScriptExports.get_managed_stack_trace=t=>{const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Exception),lr(o,t),Ws(u,r);const s=undefined;return xo(On(r,1))}finally{e.stackRestore(n)}},n&&(b.javaScriptExports.install_synchronization_context=()=>{const t=e.stackSave();try{const r=Sn(2);Ws(n,r)}finally{e.stackRestore(t)}},f||b.javaScriptExports.install_synchronization_context())}function Ls(e){const t=M.mono_wasm_assembly_find_method(b.runtime_interop_exports_class,e,-1);if(!t)throw"Can't find method "+b.runtime_interop_namespace+"."+b.runtime_interop_exports_classname+"."+e;return t}function Js(e,t,n,r,o,s,i){const a=ln(i);try{const s=undefined;Qs(qs(e,t,n,r,o),a,true)}catch(e){Us(s,String(e),a)}finally{a.release()}}function qs(e,t,n,r,o){let s=null;switch(o){case 5:s=new Int8Array(n-t);break;case 6:s=new Uint8Array(n-t);break;case 7:s=new Int16Array(n-t);break;case 8:s=new Uint16Array(n-t);break;case 9:s=new Int32Array(n-t);break;case 10:s=new Uint32Array(n-t);break;case 13:s=new Float32Array(n-t);break;case 14:s=new Float64Array(n-t);break;case 15:s=new Uint8ClampedArray(n-t);break;default:throw new Error("Unknown array type "+o)}return Gs(s,e,t,n,r),s}function Gs(e,t,n,r,s){if(Ys(e)&&e.BYTES_PER_ELEMENT){if(s!==e.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+e.BYTES_PER_ELEMENT+"' sizeof managed element: '"+s+"'");let i=(r-n)*s;const a=e.length*e.BYTES_PER_ELEMENT;i>a&&(i=a);const c=undefined,u=n*s;return new Uint8Array(e.buffer,0,i).set(o.HEAPU8.subarray(t+u,t+u+i)),i}throw new Error("Object '"+e+"' is not a typed array")}function Ys(e){return"undefined"!==typeof SharedArrayBuffer?e.buffer instanceof ArrayBuffer||e.buffer instanceof SharedArrayBuffer:e.buffer instanceof ArrayBuffer}function Zs(e,t,n){switch(true){case null===t:case"undefined"===typeof t:return n.clear(),void 0;case"symbol"===typeof t:case"string"===typeof t:return Xi._create_uri_ref(t,n.address),void 0;default:return Ks(e,t,n),void 0}}function Xs(e){const t=fn();try{return Qs(e,t,false),t.value}finally{t.release()}}function Qs(e,t,n){if(T(t))throw new Error("Expected (value, WasmRoot, boolean)");switch(true){case null===e:case"undefined"===typeof e:return t.clear(),void 0;case"number"===typeof e:{let n;return(0|e)===e?(Rt(Uo._box_buffer,e),n=Uo._class_int32):e>>>0===e?($t(Uo._box_buffer,e),n=Uo._class_uint32):(Wt(Uo._box_buffer,e),n=Uo._class_double),M.mono_wasm_box_primitive_ref(n,Uo._box_buffer,8,t.address),void 0}case"string"===typeof e:return kr(e,t),void 0;case"symbol"===typeof e:return Nr(e,t),void 0;case"boolean"===typeof e:return Ot(Uo._box_buffer,e),M.mono_wasm_box_primitive_ref(Uo._class_boolean,Uo._box_buffer,4,t.address),void 0;case true===ft(e):return si(e,t),void 0;case"Date"===e.constructor.name:return Xi._create_date_time_ref(e.getTime(),t.address),void 0;default:return Ks(n,e,t),void 0}}function Ks(e,t,n){if(n.clear(),null!==t&&"undefined"!==typeof t){if(void 0!==t[Ge]){const e=undefined;return Ei(nt(t),n.address),void 0}if(t[Ye]&&(ai(t[Ye],e,n.address),n.value||delete t[Ye]),!n.value){const r=t[Po],o="undefined"===typeof r?0:r,s=Qe(t);Xi._create_cs_owned_proxy_ref(s,o,e?1:0,n.address)}}}function ei(e){const t=e.length*e.BYTES_PER_ELEMENT,n=o._malloc(t),r=new Uint8Array(o.HEAPU8.buffer,n,t);return r.set(new Uint8Array(e.buffer,e.byteOffset,t)),r}function ti(e,t){if(!Ys(e)||!e.BYTES_PER_ELEMENT)throw new Error("Object '"+e+"' is not a typed array");{const n=e[Po],r=ei(e);M.mono_wasm_typed_array_new_ref(r.byteOffset,e.length,e.BYTES_PER_ELEMENT,n,t.address),o._free(r.byteOffset)}}function ni(e){const t=fn();try{return ti(e,t),t.value}finally{t.release()}}function ri(e,t,n){if("number"!==typeof e)throw new Error(`Expected numeric value for enum argument, got '${e}'`);return 0|e}function oi(e,t,n){const r=fn();t?M.mono_wasm_string_array_new_ref(e.length,r.address):M.mono_wasm_obj_array_new_ref(e.length,r.address);const o=fn(0),s=r.address,i=o.address;try{for(let r=0;r{Xi._set_tcs_result_ref(r,e)}),(e=>{Xi._set_tcs_failure(r,e?e.toString():"")})).finally((()=>{Ke(n),tt(o,r)})),Xi._get_tcs_task_ref(r,t.address),{then_js_handle:n}}function ii(e,t,n){const r=ln(n);try{const n=Ze(e);if(T(n))return Us(t,"ERR06: Invalid JS object handle '"+e+"'",r),void 0;ti(n,r)}catch(e){Us(t,String(e),r)}finally{r.release()}}function ai(e,t,n){if(0===e||e===x)return Rt(n,0),void 0;Xi._get_cs_owned_object_by_js_handle_ref(e,t?1:0,n)}const ci=Symbol.for("wasm delegate_invoke");function ui(e){if(0===e)return;const t=fn(e);try{return di(t)}finally{t.release()}}function li(e){const t=undefined,n=undefined;return Ze(Xi._get_cs_owned_object_js_handle_ref(e.address,0))}function fi(e,t,n,r){switch(t){case 0:return null;case 26:case 27:throw new Error("int64 not available");case 3:case 29:return xr(e);case 4:throw new Error("no idea on how to unbox value types");case 5:return hi(e);case 6:return yi(e);case 7:return vi(e);case 10:case 11:case 12:case 13:case 14:case 15:case 16:case 17:case 18:throw new Error("Marshaling of primitive arrays are not supported.");case 20:return new Date(Xi._get_date_value_ref(e.address));case 21:return Xi._object_to_string_ref(e.address);case 22:return Xi._object_to_string_ref(e.address);case 23:return li(e);case 30:return;default:throw new Error(`no idea on how to unbox object of MarshalType ${t} at offset ${e.value} (root address is ${e.address})`)}}function _i(e,t,n){if(t>=512)throw new Error(`Got marshaling error ${t} when attempting to unbox object at address ${e.value} (root located at ${e.address})`);let r=0;if((4===t||7==t)&&(r=Ht(n),r<1024))throw new Error(`Got invalid MonoType ${r} for object at address ${e.value} (root located at ${e.address})`);return fi(e,t)}function di(e){if(0===e.value)return;const t=Uo._unbox_buffer,n=M.mono_wasm_try_unbox_primitive_and_get_type_ref(e.address,t,Uo._unbox_buffer_size);switch(n){case 1:return Jt(t);case 25:return Ht(t);case 32:return Ht(t);case 24:return Zt(t);case 2:return Xt(t);case 8:return 0!==Jt(t);case 28:return String.fromCharCode(Jt(t));case 0:return null;default:return _i(e,n,t)}}function mi(e){if(0===e)return null;const t=fn(e);try{return wi(t)}finally{t.release()}}function gi(e){return Xi._is_simple_array_ref(e.address)}function wi(e){if(0===e.value)return null;const t=e.address,n=fn(),r=n.address;try{const o=M.mono_wasm_array_length(e.value),s=new Array(o);for(let e=0;ett(n,t),{promise:o,promise_control:s}=it(r,r);n=o,Xi._setup_js_cont_ref(e.address,s),et(n,t)}return n}function vi(e){if(0===e.value)return null;const t=Xi._try_get_cs_owned_object_js_handle_ref(e.address,0);if(t){if(t===x)throw new Error("Cannot access a disposed JSObject at "+e.value);return Ze(t)}const n=Xi._get_js_owned_object_gc_handle_ref(e.address);let r=ot(n);return T(r)&&(r=new ManagedObject,et(r,n)),r}function Ei(e,t){if(!e)return Rt(t,0),void 0;Xi._get_js_owned_object_by_gc_handle_ref(e,t)}const Ai=new Map;function Si(e,t,n,r,s,i,a){Et(),o.stackRestore(a),"object"===typeof r&&(r.clear(),null!==t&&null===t.scratchResultRoot?t.scratchResultRoot=r:r.release()),"object"===typeof s&&(s.clear(),null!==t&&null===t.scratchExceptionRoot?t.scratchExceptionRoot=s:s.release()),"object"===typeof i&&(i.clear(),null!==t&&null===t.scratchThisArgRoot?t.scratchThisArgRoot=i:i.release())}function Oi(e,t){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const n=`${e}-${t}`;let r=Ai.get(n);if(void 0===r){const o=Gi(e);"undefined"===typeof t&&(t=Yi(o,void 0)),r=Li(o,t,false,e),Ai.set(n,r)}return r}function xi(e,t){const n=Me(e);"string"!==typeof t&&(t=Yi(n,void 0));const r=Li(n,t,false,"_"+e+"__entrypoint");return async function(...e){return e.length>0&&Array.isArray(e[0])&&(e[0]=oi(e[0],true,false)),r(...e)}}function ji(e,t,n){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");return t||(t=[[]]),xi(e,n)(...t)}function $i(e,t,n,r,o){const s=ln(n),i=ln(t),a=ln(o);try{const t=xr(i);if(!t||"string"!==typeof t)return Us(r,"ERR12: Invalid method name object @"+i.value,a),void 0;const n=Xe(e);if(T(n))return Us(r,"ERR13: Invalid JS object handle '"+e+"' while invoking '"+t+"'",a),void 0;const o=wi(s);try{const e=n[t];if("undefined"===typeof e)throw new Error("Method: '"+t+"' not found for: '"+Object.prototype.toString.call(n)+"'");const r=undefined;Qs(e.apply(n,o),a,true)}catch(e){Us(r,e,a)}}finally{s.release(),i.release(),a.release()}}function Ni(e,t,n,r){const o=ln(t),s=ln(r);try{const t=xr(o);if(!t)return Us(n,"Invalid property name object '"+o.value+"'",s),void 0;const r=Ze(e);if(T(r))return Us(n,"ERR01: Invalid JS object handle '"+e+"' while geting '"+t+"'",s),void 0;const i=undefined;Qs(r[t],s,true)}catch(e){Us(n,e,s)}finally{s.release(),o.release()}}function ki(e,t,n,r,o,s,i){const a=ln(n),c=ln(t),u=ln(i);try{const n=xr(c);if(!n)return Us(s,"Invalid property name object '"+t+"'",u),void 0;const i=Ze(e);if(T(i))return Us(s,"ERR02: Invalid JS object handle '"+e+"' while setting '"+n+"'",u),void 0;let l=false;const f=di(a);if(r)i[n]=f,l=true;else{if(l=false,!r&&!Object.prototype.hasOwnProperty.call(i,n))return Qs(false,u,false),void 0;true===o?Object.prototype.hasOwnProperty.call(i,n)&&(i[n]=f,l=true):(i[n]=f,l=true)}Qs(l,u,false)}catch(e){Us(s,e,u)}finally{u.release(),c.release(),a.release()}}function Ti(e,t,n,r){const o=ln(r);try{const r=Ze(e);if(T(r))return Us(n,"ERR03: Invalid JS object handle '"+e+"' while getting ["+t+"]",o),void 0;const s=undefined;Qs(r[t],o,true)}catch(e){Us(n,e,o)}finally{o.release()}}function Ri(e,t,n,r,o){const s=ln(n),i=ln(o);try{const n=Ze(e);if(T(n))return Us(r,"ERR04: Invalid JS object handle '"+e+"' while setting ["+t+"]",i),void 0;const o=di(s);n[t]=o,i.clear()}catch(e){Us(r,e,i)}finally{i.release(),s.release()}}function Mi(e,t,n){const r=ln(e),i=ln(n);try{const e=xr(r);let n;if(n=e?"Module"==e?o:"INTERNAL"==e?s:globalThis[e]:globalThis,null===n||void 0===typeof n)return Us(t,"Global object '"+e+"' not found.",i),void 0;Qs(n,i,true)}catch(e){Us(t,e,i)}finally{i.release(),r.release()}}function Ii(e,t,n,r,o){try{const e=globalThis.Blazor;if(!e)throw new Error("The blazor.webassembly.js library is not loaded.");return e._internal.invokeJSFromDotNet(t,n,r,o)}catch(t){const n=t.message+"\n"+t.stack,r=fn();return kr(n,r),r.copy_to_address(e),r.release(),0}}const Di=/[^A-Za-z0-9_$]/g,Ui=new Map,Ci=new Map,Pi=new Map;function Wi(e,t,n,r){let o=null,s=null,i=null;if(r){i=Object.keys(r),s=new Array(i.length);for(let e=0,t=i.length;e{e&&"AbortError"!==e.name&&o.printErr("MONO_WASM: Error in http_wasm_abort_response: "+e)}))}function sa(e,t,n,r,o,s,i,a){const c=undefined,u=undefined;return ia(e,t,n,r,o,s,new Span(i,a,0).slice())}function ia(e,t,n,r,o,s,i){if(!(e&&"string"===typeof e))throw new Error("Assert failed: expected url string");if(!(t&&n&&Array.isArray(t)&&Array.isArray(n)&&t.length===n.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");if(!(r&&o&&Array.isArray(r)&&Array.isArray(o)&&r.length===o.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");const a=new Headers;for(let e=0;e{const t=await fetch(e,c);return t.__abort_controller=s,t}))}function aa(e){if(!e.__headerNames){e.__headerNames=[],e.__headerValues=[];const t=e.headers.entries();for(const n of t)e.__headerNames.push(n[0]),e.__headerValues.push(n[1])}}function ca(e){return aa(e),e.__headerNames}function ua(e){return aa(e),e.__headerValues}function la(e){return _t((async()=>{const t=await e.arrayBuffer();return e.__buffer=t,e.__source_offset=0,t.byteLength}))}function fa(e,t){if(!e.__buffer)throw new Error("Assert failed: expected resoved arrayBuffer");if(e.__source_offset==e.__buffer.byteLength)return 0;const n=new Uint8Array(e.__buffer,e.__source_offset);t.set(n,0);const r=Math.min(t.byteLength,n.byteLength);return e.__source_offset+=r,r}function _a(e,t,n){const r=new Span(t,n,0);return _t((async()=>{if(e.__reader||(e.__reader=e.body.getReader()),e.__chunk||(e.__chunk=await e.__reader.read(),e.__source_offset=0),e.__chunk.done)return 0;const t=e.__chunk.value.byteLength-e.__source_offset;if(!(t>0))throw new Error("Assert failed: expected remaining_source to be greater than 0");const n=Math.min(t,r.byteLength),o=e.__chunk.value.subarray(e.__source_offset,e.__source_offset+n);return r.set(o,0),e.__source_offset+=n,t==n&&(e.__chunk=void 0),n}))}let da=0,ma=false,ga=0,wa;if(globalThis.navigator){const e=globalThis.navigator;e.userAgentData&&e.userAgentData.brands?ma=e.userAgentData.brands.some((e=>"Chromium"==e.brand)):e.userAgent&&(ma=e.userAgent.includes("Chrome"))}function ha(){for(;ga>0;)--ga,M.mono_background_exec()}function pa(){if(!ma)return;const e=(new Date).valueOf(),t=e+36e4,n=undefined,r=1e3;for(let n=Math.max(e+1e3,da);n{M.mono_set_timeout_exec(),ga++,ha()}),n-e)}da=t}function ba(){++ga,setTimeout(ha,0)}function ya(e){function mono_wasm_set_timeout_exec(){M.mono_set_timeout_exec()}wa&&(clearTimeout(wa),wa=void 0),wa=setTimeout(mono_wasm_set_timeout_exec,e)}class va{constructor(){this.queue=[],this.offset=0}getLength(){return this.queue.length-this.offset}isEmpty(){return 0==this.queue.length}enqueue(e){this.queue.push(e)}dequeue(){if(0===this.queue.length)return;const e=this.queue[this.offset];return this.queue[this.offset]=null,2*++this.offset>=this.queue.length&&(this.queue=this.queue.slice(this.offset),this.offset=0),e}peek(){return this.queue.length>0?this.queue[this.offset]:void 0}drain(e){for(;this.getLength();){const t=undefined;e(this.dequeue())}}}const Ea=Symbol.for("wasm ws_pending_send_buffer"),Aa=Symbol.for("wasm ws_pending_send_buffer_offset"),Sa=Symbol.for("wasm ws_pending_send_buffer_type"),Oa=Symbol.for("wasm ws_pending_receive_event_queue"),xa=Symbol.for("wasm ws_pending_receive_promise_queue"),ja=Symbol.for("wasm ws_pending_open_promise"),$a=Symbol.for("wasm ws_pending_close_promises"),Na=Symbol.for("wasm ws_pending_send_promises"),ka=Symbol.for("wasm ws_is_aborted"),Ta=Symbol.for("wasm ws_receive_status_ptr");let Ra=false,Ma,Ia;const Da=65536,Ua=new Uint8Array;function Ca(e,t,n,r){if(!(e&&"string"===typeof e))throw new Error("Assert failed: ERR12: Invalid uri "+typeof e);const o=new globalThis.WebSocket(e,t||void 0),{promise_control:s}=it();o[Oa]=new va,o[xa]=new va,o[ja]=s,o[Na]=[],o[$a]=[],o[Ta]=n,o.binaryType="arraybuffer";const i=()=>{o[ka]||(s.resolve(o),pa())},a=e=>{o[ka]||(za(o,e),pa())},c=e=>{if(o.removeEventListener("message",a),o[ka])return;r&&r(e.code,e.reason),s.reject(e.reason);for(const e of o[$a])e.resolve();const t=undefined;o[xa].drain((e=>{Mt(n,0),Mt(n+4,2),Mt(n+8,1),e.resolve()}))},u=e=>{s.reject(e.message||"WebSocket error")};return o.addEventListener("message",a),o.addEventListener("open",i,{once:true}),o.addEventListener("close",c,{once:true}),o.addEventListener("error",u,{once:true}),o}function Pa(e){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const t=undefined;return e[ja].promise}function Wa(e,t,n,r,s){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const i=undefined,a=Ja(e,new Uint8Array(o.HEAPU8.buffer,t,n),r,s);return s&&a?Ha(e,a):null}function Fa(e,t,n){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");const r=e[Oa],o=e[xa],s=e.readyState;if(s!=WebSocket.OPEN&&s!=WebSocket.CLOSING)throw new Error("InvalidState: The WebSocket is not connected.");if(r.getLength()){if(!(0==o.getLength()))throw new Error("Assert failed: ERR20: Invalid WS state");return La(e,r,t,n),null}const{promise:i,promise_control:a}=it(),c=a;return c.buffer_ptr=t,c.buffer_length=n,o.enqueue(c),i}function Ba(e,t,n,r){if(!!!e)throw new Error("Assert failed: ERR19: expected ws instance");if(e.readyState==WebSocket.CLOSED)return null;if(r){const{promise:r,promise_control:o}=it();return e[$a].push(o),"string"===typeof n?e.close(t,n):e.close(t),r}return Ra||(Ra=true,console.warn("WARNING: Web browsers do not support closing the output side of a WebSocket. CloseOutputAsync has closed the socket and discarded any incoming messages.")),"string"===typeof n?e.close(t,n):e.close(t),null}function Va(e){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");e[ka]=true;const t=e[ja];t&&t.reject("OperationCanceledException");for(const t of e[$a])t.reject("OperationCanceledException");for(const t of e[Na])t.reject("OperationCanceledException");e[xa].drain((e=>{e.reject("OperationCanceledException")})),e.close(1e3,"Connection was aborted.")}function Ha(e,t){if(e.send(t),e[Ea]=null,e.bufferedAmount{if(0===e.bufferedAmount)r.resolve();else if(e.readyState!=WebSocket.OPEN)r.reject("InvalidState: The WebSocket is not connected.");else if(!r.isDone)return globalThis.setTimeout(i,s),s=Math.min(1.5*s,1e3),void 0;const t=o.indexOf(r);t>-1&&o.splice(t,1)};return globalThis.setTimeout(i,0),n}function za(e,t){const n=e[Oa],r=e[xa];if("string"===typeof t.data)void 0===Ia&&(Ia=new TextEncoder),n.enqueue({type:0,data:Ia.encode(t.data),offset:0});else{if("ArrayBuffer"!==t.data.constructor.name)throw new Error("ERR19: WebSocket receive expected ArrayBuffer");n.enqueue({type:1,data:new Uint8Array(t.data),offset:0})}if(r.getLength()&&n.getLength()>1)throw new Error("ERR21: Invalid WS state");for(;r.getLength()&&n.getLength();){const t=r.dequeue();La(e,n,t.buffer_ptr,t.buffer_length),t.resolve()}pa()}function La(e,t,n,r){const s=t.peek(),i=Math.min(r,s.data.length-s.offset);if(i>0){const e=s.data.subarray(s.offset,s.offset+i),t=undefined;new Uint8Array(o.HEAPU8.buffer,n,r).set(e,0),s.offset+=i}const a=s.data.length===s.offset?1:0;a&&t.dequeue();const c=e[Ta];Mt(c,i),Mt(c+4,s.type),Mt(c+8,a)}function Ja(e,t,n,r){let o=e[Ea],s=0;const i=t.byteLength;if(o){if(s=e[Aa],n=e[Sa],0!==i){if(s+i>o.length){const n=new Uint8Array(1.5*(s+i+50));n.set(o,0),n.subarray(s).set(t),e[Ea]=o=n}else o.subarray(s).set(t);s+=i,e[Aa]=s}}else r?0!==i&&(o=t,s=i):(0!==i&&(o=t.slice(),s=i,e[Aa]=s,e[Ea]=o),e[Sa]=n);if(r){if(0==s||null==o)return Ua;if(0===n){void 0===Ma&&(Ma=new TextDecoder("utf-8",{fatal:false}));const e="undefined"!==typeof SharedArrayBuffer&&o instanceof SharedArrayBuffer?o.slice(0,s):o.subarray(0,s);return Ma.decode(e)}return o.subarray(0,s)}return null}function qa(){return{mono_wasm_exit:e=>{o.printErr("MONO_WASM: early exit "+e)},mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression,mono_method_resolve:Gi,mono_intern_string:jr,logging:void 0,mono_wasm_stringify_as_error_with_stack:xe,mono_wasm_get_loaded_files:ls,mono_wasm_send_dbg_command_with_parms:q,mono_wasm_send_dbg_command:G,mono_wasm_get_dbg_command_info:Y,mono_wasm_get_details:ie,mono_wasm_release_object:ce,mono_wasm_call_function_on:oe,mono_wasm_debugger_resume:Z,mono_wasm_detach_debugger:X,mono_wasm_raise_debug_event:K,mono_wasm_change_debugger_log_level:Q,mono_wasm_debugger_attached:te,mono_wasm_runtime_is_ready:b.mono_wasm_runtime_is_ready,get_property:$s,set_property:js,has_property:Ns,get_typeof_property:ks,get_global_this:Ts,get_dotnet_instance:()=>_,dynamic_import:Is,mono_wasm_cancel_promise:dt,ws_wasm_create:Ca,ws_wasm_open:Pa,ws_wasm_send:Wa,ws_wasm_receive:Fa,ws_wasm_close:Ba,ws_wasm_abort:Va,http_wasm_supports_streaming_response:ta,http_wasm_create_abort_controler:na,http_wasm_abort_request:ra,http_wasm_abort_response:oa,http_wasm_fetch:ia,http_wasm_fetch_bytes:sa,http_wasm_get_response_header_names:ca,http_wasm_get_response_header_values:ua,http_wasm_get_response_bytes:fa,http_wasm_get_response_length:la,http_wasm_get_streamed_response_bytes:_a}}function Ga(e){Object.assign(e,{mono_wasm_exit:M.mono_wasm_exit,mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression})}function Ya(){return{mono_wasm_setenv:xc,mono_wasm_load_bytes_into_heap:tn,mono_wasm_load_icu_data:fe,mono_wasm_runtime_ready:mono_wasm_runtime_ready,mono_wasm_load_data_archive:cs,mono_wasm_load_config:Rc,mono_load_runtime_and_bcl_args:Dc,mono_wasm_new_root_buffer:un,mono_wasm_new_root:fn,mono_wasm_new_external_root:ln,mono_wasm_release_roots:_n,mono_run_main:Re,mono_run_main_and_exit:Te,mono_wasm_add_assembly:null,mono_wasm_load_runtime:kc,config:b.config,loaded_files:[],setB32:Ot,setI8:kt,setI16:Tt,setI32:Mt,setI52:Dt,setU52:Ut,setI64Big:Ct,setU8:xt,setU16:jt,setU32:Nt,setF32:Pt,setF64:Wt,getB32:Ft,getI8:zt,getI16:Lt,getI32:Jt,getI52:qt,getU52:Gt,getI64Big:Yt,getU8:Bt,getU16:Vt,getU32:Ht,getF32:Zt,getF64:Xt}}function Za(e){Object.assign(e,{mono_wasm_add_assembly:M.mono_wasm_add_assembly})}function Xa(){return{bind_static_method:Oi,call_assembly_entry_point:ji,mono_obj_array_new:null,mono_obj_array_set:null,js_string_to_mono_string:Mr,js_typed_array_to_array:ni,mono_array_to_js_array:mi,js_to_mono_obj:Xs,conv_string:Or,unbox_mono_obj:ui,mono_obj_array_new_ref:null,mono_obj_array_set_ref:null,js_string_to_mono_string_root:kr,js_typed_array_to_array_root:ti,js_to_mono_obj_root:Qs,conv_string_root:xr,unbox_mono_obj_root:di,mono_array_root_to_js_array:wi}}function Qa(e){Object.assign(e,{mono_obj_array_new:M.mono_wasm_obj_array_new,mono_obj_array_set:M.mono_wasm_obj_array_set,mono_obj_array_new_ref:M.mono_wasm_obj_array_new_ref,mono_obj_array_set_ref:M.mono_wasm_obj_array_set_ref})}function Ka(){}async function ec(){return console.warn("MONO_WASM: ignoring diagnostics options because this runtime does not support diagnostics"),void 0}let tc,nc=false,rc=false;const oc=it(),sc=it(),ic=it(),ac=it(),cc=it(),uc=it(),lc=it(),fc=it(),_c=it();function dc(e,t){const n=e.instantiateWasm,r=e.preInit?"function"===typeof e.preInit?[e.preInit]:e.preInit:[],o=e.preRun?"function"===typeof e.preRun?[e.preRun]:e.preRun:[],s=e.postRun?"function"===typeof e.postRun?[e.postRun]:e.postRun:[],i=e.onRuntimeInitialized?e.onRuntimeInitialized:()=>{};rc=!e.configSrc&&(!e.config||!e.config.assets||-1==e.config.assets.findIndex((e=>"assembly"===e.behavior))),e.instantiateWasm=(e,t)=>mc(e,t,n),e.preInit=[()=>gc(r)],e.preRun=[()=>wc(o)],e.onRuntimeInitialized=()=>hc(i),e.postRun=[()=>pc(s)],e.ready.then((async()=>{await _c.promise,oc.promise_control.resolve(t)})).catch((e=>{oc.promise_control.reject(e)})),e.ready=oc.promise,e.onAbort||(e.onAbort=()=>Ie)}function mc(e,t,n){if(o.configSrc||o.config||n||o.print("MONO_WASM: configSrc nor config was specified"),tc=o.config?b.config=o.config:b.config=o.config={},b.diagnosticTracing=!!tc.diagnosticTracing,n){const r=undefined;return n(e,((e,n)=>{ic.promise_control.resolve(),t(e,n)}))}return $c(e,t),[]}function gc(e){o.addRunDependency("mono_pre_init");try{yc(),b.diagnosticTracing&&console.debug("MONO_WASM: preInit"),ac.promise_control.resolve(),e.forEach((e=>e()))}catch(e){throw Oc("MONO_WASM: user preInint() failed",e),bc(e,true),e}(async()=>{try{await vc(),rc||await Ec()}catch(e){throw bc(e,true),e}cc.promise_control.resolve(),o.removeRunDependency("mono_pre_init")})()}async function wc(e){o.addRunDependency("mono_pre_run_async"),await ic.promise,await cc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: preRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback preRun() failed",e),bc(e,true),e}uc.promise_control.resolve(),o.removeRunDependency("mono_pre_run_async")}async function hc(e){await uc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: onRuntimeInitialized"),lc.promise_control.resolve();try{rc||(await us(),await Ac()),tc.runtimeOptions&&jc(tc.runtimeOptions);try{e()}catch(e){throw Oc("MONO_WASM: user callback onRuntimeInitialized() failed",e),e}await Sc()}catch(e){throw Oc("MONO_WASM: onRuntimeInitializedAsync() failed",e),bc(e,true),e}fc.promise_control.resolve()}async function pc(e){await fc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: postRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback posRun() failed",e),bc(e,true),e}_c.promise_control.resolve()}function bc(e,t){b.diagnosticTracing&&console.trace("MONO_WASM: abort_startup"),oc.promise_control.reject(e),ic.promise_control.reject(e),ac.promise_control.reject(e),cc.promise_control.reject(e),uc.promise_control.reject(e),lc.promise_control.reject(e),fc.promise_control.reject(e),_c.promise_control.reject(e),t&&De(1,e)}function yc(){o.addRunDependency("mono_wasm_pre_init_essential"),b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential"),I(),Ga(s),Za(Io),Qa(Do),o.removeRunDependency("mono_wasm_pre_init_essential")}async function vc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential_async"),o.addRunDependency("mono_wasm_pre_init_essential_async"),await ms(),await Rc(o.configSrc),o.removeRunDependency("mono_wasm_pre_init_essential_async")}async function Ec(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_full"),o.addRunDependency("mono_wasm_pre_init_full"),await es(),o.removeRunDependency("mono_wasm_pre_init_full")}async function Ac(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_before_user_runtime_initialized");try{await Nc(),de(),b.mono_wasm_load_runtime_done||kc("unused",tc.debugLevel),b.mono_wasm_runtime_is_ready||mono_wasm_runtime_ready(),b.mono_wasm_symbols_are_ready||ke("dotnet.js.symbols"),setTimeout((()=>{Ar.init_fields()}))}catch(e){throw Oc("MONO_WASM: Error in mono_wasm_before_user_runtime_initialized",e),e}}async function Sc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_after_user_runtime_initialized");try{if(!o.disableDotnet6Compatibility&&o.exports){const e=globalThis;for(let t=0;tb.config,setHeapB32:Ot,setHeapU8:xt,setHeapU16:jt,setHeapU32:Nt,setHeapI8:kt,setHeapI16:Tt,setHeapI32:Mt,setHeapI52:Dt,setHeapU52:Ut,setHeapI64Big:Ct,setHeapF32:Pt,setHeapF64:Wt,getHeapB32:Ft,getHeapU8:Bt,getHeapU16:Vt,getHeapU32:Ht,getHeapI8:zt,getHeapI16:Lt,getHeapI32:Jt,getHeapI52:qt,getHeapU52:Gt,getHeapI64Big:Yt,getHeapF32:Zt,getHeapF64:Xt}}function Hc(){const e=undefined;return{dotnet:Bc,exit:De}}const zc=Jc,Lc=Gc;function Jc(n,o,s,i){const a=o.module,c=globalThis;g(n,o),Co(o),ds(s),Object.assign(o.mono,Ya()),Object.assign(o.binding,Xa()),Object.assign(o.internal,qa()),Object.assign(o.internal,qa());const u=Vc();if(e.__linker_exports=Wc(),Object.assign(_,{MONO:o.mono,BINDING:o.binding,INTERNAL:o.internal,IMPORTS:o.marshaled_imports,Module:a,runtimeBuildInfo:{productVersion:t,buildConfiguration:r},...u}),Object.assign(i,u),o.module.__undefinedConfig&&(a.disableDotnet6Compatibility=true,a.configSrc="./mono-config.json"),a.print||(a.print=console.log.bind(console)),a.printErr||(a.printErr=console.error.bind(console)),"undefined"===typeof a.disableDotnet6Compatibility&&(a.disableDotnet6Compatibility=true),n.isGlobal||!a.disableDotnet6Compatibility){Object.assign(a,_),a.mono_bind_static_method=(e,t)=>(console.warn("MONO_WASM: Module.mono_bind_static_method is obsolete, please use [JSExportAttribute] interop instead"),Oi(e,t));const e=(e,t)=>{if("undefined"!==typeof c[e])return;let n;Object.defineProperty(globalThis,e,{get:()=>{if(T(n)){const r=(new Error).stack,o=r?r.substr(r.indexOf("\n",8)+1):"";console.warn(`MONO_WASM: global ${e} is obsolete, please use Module.${e} instead ${o}`),n=t()}return n}})};c.MONO=o.mono,c.BINDING=o.binding,c.INTERNAL=o.internal,n.isGlobal||(c.Module=a),e("cwrap",(()=>a.cwrap)),e("addRunDependency",(()=>a.addRunDependency)),e("removeRunDependency",(()=>a.removeRunDependency))}let l;return c.getDotnetRuntime?l=c.getDotnetRuntime.__list:(c.getDotnetRuntime=e=>c.getDotnetRuntime.__list.getRuntime(e),c.getDotnetRuntime.__list=l=new qc),l.registerRuntime(_),dc(a,_),_}e.__linker_exports=null;class qc{constructor(){this.list={}}registerRuntime(e){return e.runtimeId=Object.keys(this.list).length,this.list[e.runtimeId]=Be(e),e.runtimeId}getRuntime(e){const t=this.list[e];return t?t.deref():void 0}}function Gc(e,t){w(t),Object.assign(d,Hc()),h(e)}return e.__initializeImportsAndExports=zc,e.__setEmscriptenEntrypoint=Lc,e.moduleExports=d,Object.defineProperty(e,"__esModule",{value:true}),e}({});
+
+var createDotnetRuntime = (() => {
+ var _scriptDir = import.meta.url;
+
+ return (
+function(createDotnetRuntime) {
+ createDotnetRuntime = createDotnetRuntime || {};
+
+"use strict";var Module=typeof createDotnetRuntime!="undefined"?createDotnetRuntime:{};var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var require=require||undefined;var __dirname=__dirname||"";var __callbackAPI={MONO:MONO,BINDING:BINDING,INTERNAL:INTERNAL,IMPORTS:IMPORTS};if(typeof createDotnetRuntime==="function"){__callbackAPI.Module=Module={ready:Module.ready};const extension=createDotnetRuntime(__callbackAPI);if(extension.ready){throw new Error("MONO_WASM: Module.ready couldn't be redefined.")}Object.assign(Module,extension);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else if(typeof createDotnetRuntime==="object"){__callbackAPI.Module=Module={ready:Module.ready,__undefinedConfig:Object.keys(createDotnetRuntime).length===1};Object.assign(Module,createDotnetRuntime);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else{throw new Error("MONO_WASM: Can't use moduleFactory callback of createDotnetRuntime function.")}var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;err("exiting due to exception: "+toLog)}var fs;var nodePath;var requireNodeFS;if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}requireNodeFS=()=>{if(!nodePath){fs=require("fs");nodePath=require("path")}};read_=function shell_read(filename,binary){requireNodeFS();filename=nodePath["normalize"](filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror)=>{requireNodeFS();filename=nodePath["normalize"](filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",function(reason){throw reason});quit_=(status,toThrow)=>{if(keepRuntimeAlive()){process["exitCode"]=status;throw toThrow}logExceptionOnExit(toThrow);process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=function shell_read(f){return read(f)}}readBinary=function readBinary(f){let data;if(typeof readbuffer=="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data=="object");return data};readAsync=function readAsync(f,onload,onerror){setTimeout(()=>onload(readBinary(f)),0)};if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit=="function"){quit_=(status,toThrow)=>{logExceptionOnExit(toThrow);quit(status)}}if(typeof print!="undefined"){if(typeof console=="undefined")console={};console.log=print;console.warn=console.error=typeof printErr!="undefined"?printErr:print}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var POINTER_SIZE=4;function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}}function uleb128Encode(n){if(n<128){return[n]}return[n%128|128,n>>7]}function convertJsFunctionToWasm(func,sig){if(typeof WebAssembly.Function=="function"){var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64","p":"i32"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i{tempRet0=value};var getTempRet0=()=>tempRet0;var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;if(typeof WebAssembly!="object"){abort("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}function getCFunc(ident){var func=Module["_"+ident];return func}function ccall(ident,returnType,argTypes,args,opts){var toC={"string":function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret},"array":function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string"){return UTF8ToString(ret)}if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!="undefined"?new TextDecoder("utf-16le"):undefined;function allocateUTF8(str){var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8Array(str,HEAP8,ret,size);return ret}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;function keepRuntimeAlive(){return noExitRuntime}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();SOCKFS.root=FS.mount(SOCKFS,{},null);callRuntimeCallbacks(__ATINIT__)}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){{if(Module["onAbort"]){Module["onAbort"](what)}}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;if(Module["locateFile"]){wasmBinaryFile="dotnet.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}}else{wasmBinaryFile=new URL("dotnet.wasm",import.meta.url).toString()}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"env":asmLibraryArg,"wasi_snapshot_preview1":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["memory"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["__indirect_function_table"];addOnInit(Module["asm"]["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&typeof fetch=="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync().catch(readyPromiseReject);return{}}var tempDouble;var tempI64;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback(Module);continue}var func=callback.func;if(typeof func=="number"){if(callback.arg===undefined){getWasmTableEntry(func)()}else{getWasmTableEntry(func)(callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}function demangle(func){return func}function demangleAll(text){var regex=/\b_Z[\w\d_]+/g;return text.replace(regex,function(x){var y=demangle(x);return x===y?x:y+" ["+x+"]"})}function getValue(ptr,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":return HEAP8[ptr>>0];case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP32[ptr>>2];case"float":return HEAPF32[ptr>>2];case"double":return Number(HEAPF64[ptr>>3]);default:abort("invalid type for getValue: "+type)}return null}var wasmTableMirror=[];function getWasmTableEntry(funcPtr){var func=wasmTableMirror[funcPtr];if(!func){if(funcPtr>=wasmTableMirror.length)wasmTableMirror.length=funcPtr+1;wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func}function jsStackTrace(){var error=new Error;if(!error.stack){try{throw new Error}catch(e){error=e}if(!error.stack){return"(no stack trace available)"}}return error.stack.toString()}function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":HEAP8[ptr>>0]=value;break;case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;default:abort("invalid type for setValue: "+type)}}function setWasmTableEntry(idx,func){wasmTable.set(idx,func);wasmTableMirror[idx]=wasmTable.get(idx)}function ___cxa_allocate_exception(size){return _malloc(size+24)+24}var exceptionCaught=[];function exception_addRef(info){info.add_ref()}var uncaughtExceptionCount=0;function ___cxa_begin_catch(ptr){var info=new ExceptionInfo(ptr);if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(info);exception_addRef(info);return info.get_exception_ptr()}var exceptionLast=0;function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){HEAPU32[this.ptr+4>>2]=type};this.get_type=function(){return HEAPU32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAPU32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAPU32[this.ptr+8>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=prev-1;return prev===1};this.set_adjusted_ptr=function(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return HEAPU32[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}function ___cxa_free_exception(ptr){return _free(new ExceptionInfo(ptr).ptr)}function exception_decRef(info){if(info.release_ref()&&!info.get_rethrown()){var destructor=info.get_destructor();if(destructor){getWasmTableEntry(destructor)(info.excPtr)}___cxa_free_exception(info.excPtr)}}function ___cxa_end_catch(){_setThrew(0);var info=exceptionCaught.pop();exception_decRef(info);exceptionLast=0}function ___resumeException(ptr){if(!exceptionLast){exceptionLast=ptr}throw ptr}function ___cxa_find_matching_catch_3(){var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0}var info=new ExceptionInfo(thrown);info.set_adjusted_ptr(thrown);var thrownType=info.get_type();if(!thrownType){setTempRet0(0);return thrown}var typeArray=Array.prototype.slice.call(arguments);for(var i=0;ipath.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join("/"))},join2:(l,r)=>{return PATH.normalize(l+"/"+r)}};function getRandomDevice(){if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){var randomBuffer=new Uint8Array(1);return function(){crypto.getRandomValues(randomBuffer);return randomBuffer[0]}}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");return function(){return crypto_module["randomBytes"](1)[0]}}catch(e){}}return function(){abort("randomDevice")}}var PATH_FS={resolve:function(){var resolvedPath="",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i0){result=buf.slice(0,bytesRead).toString("utf-8")}else{result=null}}else if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else if(typeof readline=="function"){result=readline();if(result!==null){result+="\n"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function zeroMemory(address,size){HEAPU8.fill(0,address,address+size)}function alignMemory(size,alignment){return Math.ceil(size/alignment)*alignment}function mmapAlloc(size){size=alignMemory(size,65536);var ptr=_emscripten_builtin_memalign(65536,size);if(!ptr)return 0;zeroMemory(ptr,size);return ptr}var MEMFS={ops_table:null,mount:function(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode:function(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}if(!MEMFS.ops_table){MEMFS.ops_table={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}}}var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray:function(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage:function(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i0||position+length{path=PATH_FS.resolve(FS.cwd(),path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=PATH.normalizeArray(path.split("/").filter(p=>!!p),false);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:node=>{var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?mount+"/"+path:mount+path}path=path?node.name+"/"+path:node.name;node=node.parent}},hashName:(parentid,name)=>{var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode:node=>{var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:node=>{var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:(parent,name)=>{var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:(parent,name,mode,rdev)=>{var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:node=>{FS.hashRemoveNode(node)},isRoot:node=>{return node===node.parent},isMountpoint:node=>{return!!node.mounted},isFile:mode=>{return(mode&61440)===32768},isDir:mode=>{return(mode&61440)===16384},isLink:mode=>{return(mode&61440)===40960},isChrdev:mode=>{return(mode&61440)===8192},isBlkdev:mode=>{return(mode&61440)===24576},isFIFO:mode=>{return(mode&61440)===4096},isSocket:mode=>{return(mode&49152)===49152},flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:str=>{var flags=FS.flagModes[str];if(typeof flags=="undefined"){throw new Error("Unknown file open mode: "+str)}return flags},flagsToPermissionString:flag=>{var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions:(node,perms)=>{if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup:dir=>{var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:(dir,name)=>{try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:(dir,name,isdir)=>{var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:(node,flags)=>{if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:(fd_start=0,fd_end=FS.MAX_OPEN_FDS)=>{for(var fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:fd=>FS.streams[fd],createStream:(stream,fd_start,fd_end)=>{if(!FS.FSStream){FS.FSStream=function(){this.shared={}};FS.FSStream.prototype={object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}},flags:{get:function(){return this.shared.flags},set:function(val){this.shared.flags=val}},position:{get function(){return this.shared.position},set:function(val){this.shared.position=val}}}}stream=Object.assign(new FS.FSStream,stream);var fd=FS.nextfd(fd_start,fd_end);stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:fd=>{FS.streams[fd]=null},chrdev_stream_ops:{open:stream=>{var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:()=>{throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice:(dev,ops)=>{FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts:mount=>{var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:(populate,callback)=>{if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work")}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:(type,opts,mountpoint)=>{var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:mountpoint=>{var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:(parent,name)=>{return parent.node_ops.lookup(parent,name)},mknod:(path,mode,dev)=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:(path,mode)=>{mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:(path,mode)=>{mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:(path,mode)=>{var dirs=path.split("/");var d="";for(var i=0;i{if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink:(oldpath,newpath)=>{if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename:(old_path,new_path)=>{var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name)}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir:path=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink:path=>{var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat:(path,dontFollow)=>{var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat:path=>{return FS.stat(path,true)},chmod:(path,mode,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod:(path,mode)=>{FS.chmod(path,mode,true)},fchmod:(fd,mode)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chmod(stream.node,mode)},chown:(path,uid,gid,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown:(path,uid,gid)=>{FS.chown(path,uid,gid,true)},fchown:(fd,uid,gid)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chown(stream.node,uid,gid)},truncate:(path,len)=>{if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate:(fd,len)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime:(path,atime,mtime)=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open:(path,flags,mode)=>{if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS.modeStringToFlags(flags):flags;mode=typeof mode=="undefined"?438:mode;if(flags&64){mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close:stream=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed:stream=>{return stream.fd===null},llseek:(stream,offset,whence)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read:(stream,buffer,offset,length,position)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write:(stream,buffer,offset,length,position,canOwn)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate:(stream,offset,length)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap:(stream,length,position,prot,flags)=>{if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync:(stream,buffer,offset,length,mmapFlags)=>{if(!stream||!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},munmap:stream=>0,ioctl:(stream,cmd,arg)=>{if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile:(path,opts={})=>{opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error('Invalid encoding type "'+opts.encoding+'"')}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile:(path,data,opts={})=>{opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir:path=>{var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories:()=>{FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices:()=>{FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var random_device=getRandomDevice();FS.createDevice("/dev","random",random_device);FS.createDevice("/dev","urandom",random_device);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories:()=>{FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount:()=>{var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup:(parent,name)=>{var fd=+name;var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams:()=>{if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},ensureErrnoError:()=>{if(FS.ErrnoError)return;FS.ErrnoError=function ErrnoError(errno,node){this.node=node;this.setErrno=function(errno){this.errno=errno};this.setErrno(errno);this.message="FS error"};FS.ErrnoError.prototype=new Error;FS.ErrnoError.prototype.constructor=FS.ErrnoError;[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack=""})},staticInit:()=>{FS.ensureErrnoError();FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={"MEMFS":MEMFS}},init:(input,output,error)=>{FS.init.initialized=true;FS.ensureErrnoError();Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit:()=>{FS.init.initialized=false;for(var i=0;i{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode},findObject:(path,dontResolveLastLink)=>{var ret=FS.analyzePath(path,dontResolveLastLink);if(ret.exists){return ret.object}else{return null}},analyzePath:(path,dontResolveLastLink)=>{try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath:(parent,path,canRead,canWrite)=>{parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile:(parent,name,properties,canRead,canWrite)=>{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile:(parent,name,data,canRead,canWrite,canOwn)=>{var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS.getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open:stream=>{stream.seekable=false},close:stream=>{if(output&&output.buffer&&output.buffer.length){output(10)}},read:(stream,buffer,offset,length,pos)=>{var bytesRead=0;for(var i=0;i{for(var i=0;i{if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else if(read_){try{obj.contents=intArrayFromString(read_(obj.url),true);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}else{throw new Error("Cannot load without read() or XMLHttpRequest.")}},createLazyFile:(parent,name,url,canRead,canWrite)=>{function LazyUint8Array(){this.lengthKnown=false;this.chunks=[]}LazyUint8Array.prototype.get=function LazyUint8Array_get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}else{return intArrayFromString(xhr.responseText||"",true)}};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency("cp "+fullname);function processData(byteArray){function finish(byteArray){if(preFinish)preFinish();if(!dontCreateFile){FS.createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}if(onload)onload();removeRunDependency(dep)}if(Browser.handledByPreloadPlugin(byteArray,fullname,finish,()=>{if(onerror)onerror();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,byteArray=>processData(byteArray),onerror)}else{processData(url)}},indexedDB:()=>{return window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB},DB_NAME:()=>{return"EM_FS_"+window.location.pathname},DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=()=>{out("creating db");var db=openRequest.result;db.createObjectStore(FS.DB_STORE_NAME)};openRequest.onsuccess=()=>{var db=openRequest.result;var transaction=db.transaction([FS.DB_STORE_NAME],"readwrite");var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var putRequest=files.put(FS.analyzePath(path).object.contents,path);putRequest.onsuccess=()=>{ok++;if(ok+fail==total)finish()};putRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror},loadFilesFromDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=onerror;openRequest.onsuccess=()=>{var db=openRequest.result;try{var transaction=db.transaction([FS.DB_STORE_NAME],"readonly")}catch(e){onerror(e);return}var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var getRequest=files.get(path);getRequest.onsuccess=()=>{if(FS.analyzePath(path).exists){FS.unlink(path)}FS.createDataFile(PATH.dirname(path),PATH.basename(path),getRequest.result,true,true,true);ok++;if(ok+fail==total)finish()};getRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt:function(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=FS.getStream(dirfd);if(!dirstream)throw new FS.ErrnoError(8);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat:function(func,path,buf){try{var stat=func(path)}catch(e){if(e&&e.node&&PATH.normalize(path)!==PATH.normalize(FS.getPath(e.node))){return-54}throw e}HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=0;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAP32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;HEAP32[buf+32>>2]=0;tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1];HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;HEAP32[buf+56>>2]=stat.atime.getTime()/1e3|0;HEAP32[buf+60>>2]=0;HEAP32[buf+64>>2]=stat.mtime.getTime()/1e3|0;HEAP32[buf+68>>2]=0;HEAP32[buf+72>>2]=stat.ctime.getTime()/1e3|0;HEAP32[buf+76>>2]=0;tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+80>>2]=tempI64[0],HEAP32[buf+84>>2]=tempI64[1];return 0},doMsync:function(addr,stream,len,flags,offset){var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}var SOCKFS={mount:function(mount){Module["websocket"]=Module["websocket"]&&"object"===typeof Module["websocket"]?Module["websocket"]:{};Module["websocket"]._callbacks={};Module["websocket"]["on"]=function(event,callback){if("function"===typeof callback){this._callbacks[event]=callback}return this};Module["websocket"].emit=function(event,param){if("function"===typeof this._callbacks[event]){this._callbacks[event].call(this,param)}};return FS.createNode(null,"/",16384|511,0)},createSocket:function(family,type,protocol){type&=~526336;var streaming=type==1;if(streaming&&protocol&&protocol!=6){throw new FS.ErrnoError(66)}var sock={family:family,type:type,protocol:protocol,server:null,error:null,peers:{},pending:[],recv_queue:[],sock_ops:SOCKFS.websocket_sock_ops};var name=SOCKFS.nextname();var node=FS.createNode(SOCKFS.root,name,49152,0);node.sock=sock;var stream=FS.createStream({path:name,node:node,flags:2,seekable:false,stream_ops:SOCKFS.stream_ops});sock.stream=stream;return sock},getSocket:function(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll:function(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl:function(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read:function(stream,buffer,offset,length,position){var sock=stream.node.sock;var msg=sock.sock_ops.recvmsg(sock,length);if(!msg){return 0}buffer.set(msg.buffer,offset);return msg.buffer.length},write:function(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close:function(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname:function(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer:function(sock,addr,port){var ws;if(typeof addr=="object"){ws=addr;addr=null;port=null}if(ws){if(ws._socket){addr=ws._socket.remoteAddress;port=ws._socket.remotePort}else{var result=/ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url);if(!result){throw new Error("WebSocket URL must be in the format ws(s)://address:port")}addr=result[1];port=parseInt(result[2],10)}}else{try{var runtimeConfig=Module["websocket"]&&"object"===typeof Module["websocket"];var url="ws:#".replace("#","//");if(runtimeConfig){if("string"===typeof Module["websocket"]["url"]){url=Module["websocket"]["url"]}}if(url==="ws://"||url==="wss://"){var parts=addr.split("/");url=url+parts[0]+":"+port+"/"+parts.slice(1).join("/")}var subProtocols="binary";if(runtimeConfig){if("string"===typeof Module["websocket"]["subprotocol"]){subProtocols=Module["websocket"]["subprotocol"]}}var opts=undefined;if(subProtocols!=="null"){subProtocols=subProtocols.replace(/^ +| +$/g,"").split(/ *, */);opts=subProtocols}if(runtimeConfig&&null===Module["websocket"]["subprotocol"]){subProtocols="null";opts=undefined}var WebSocketConstructor;if(ENVIRONMENT_IS_NODE){WebSocketConstructor=require("ws")}else{WebSocketConstructor=WebSocket}ws=new WebSocketConstructor(url,opts);ws.binaryType="arraybuffer"}catch(e){throw new FS.ErrnoError(23)}}var peer={addr:addr,port:port,socket:ws,dgram_send_queue:[]};SOCKFS.websocket_sock_ops.addPeer(sock,peer);SOCKFS.websocket_sock_ops.handlePeerEvents(sock,peer);if(sock.type===2&&typeof sock.sport!="undefined"){peer.dgram_send_queue.push(new Uint8Array([255,255,255,255,"p".charCodeAt(0),"o".charCodeAt(0),"r".charCodeAt(0),"t".charCodeAt(0),(sock.sport&65280)>>8,sock.sport&255]))}return peer},getPeer:function(sock,addr,port){return sock.peers[addr+":"+port]},addPeer:function(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer:function(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents:function(sock,peer){var first=true;var handleOpen=function(){Module["websocket"].emit("open",sock.stream.fd);try{var queued=peer.dgram_send_queue.shift();while(queued){peer.socket.send(queued);queued=peer.dgram_send_queue.shift()}}catch(e){peer.socket.close()}};function handleMessage(data){if(typeof data=="string"){var encoder=new TextEncoder;data=encoder.encode(data)}else{assert(data.byteLength!==undefined);if(data.byteLength==0){return}else{data=new Uint8Array(data)}}var wasfirst=first;first=false;if(wasfirst&&data.length===10&&data[0]===255&&data[1]===255&&data[2]===255&&data[3]===255&&data[4]==="p".charCodeAt(0)&&data[5]==="o".charCodeAt(0)&&data[6]==="r".charCodeAt(0)&&data[7]==="t".charCodeAt(0)){var newport=data[8]<<8|data[9];SOCKFS.websocket_sock_ops.removePeer(sock,peer);peer.port=newport;SOCKFS.websocket_sock_ops.addPeer(sock,peer);return}sock.recv_queue.push({addr:peer.addr,port:peer.port,data:data});Module["websocket"].emit("message",sock.stream.fd)}if(ENVIRONMENT_IS_NODE){peer.socket.on("open",handleOpen);peer.socket.on("message",function(data,isBinary){if(!isBinary){return}handleMessage(new Uint8Array(data).buffer)});peer.socket.on("close",function(){Module["websocket"].emit("close",sock.stream.fd)});peer.socket.on("error",function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])})}else{peer.socket.onopen=handleOpen;peer.socket.onclose=function(){Module["websocket"].emit("close",sock.stream.fd)};peer.socket.onmessage=function peer_socket_onmessage(event){handleMessage(event.data)};peer.socket.onerror=function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll:function(sock){if(sock.type===1&&sock.server){return sock.pending.length?64|1:0}var mask=0;var dest=sock.type===1?SOCKFS.websocket_sock_ops.getPeer(sock,sock.daddr,sock.dport):null;if(sock.recv_queue.length||!dest||dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=64|1}if(!dest||dest&&dest.socket.readyState===dest.socket.OPEN){mask|=4}if(dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=16}return mask},ioctl:function(sock,request,arg){switch(request){case 21531:var bytes=0;if(sock.recv_queue.length){bytes=sock.recv_queue[0].data.length}HEAP32[arg>>2]=bytes;return 0;default:return 28}},close:function(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i>2]=value;return value}function inetNtop4(addr){return(addr&255)+"."+(addr>>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255)}function inetNtop6(ints){var str="";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part="";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str="::ffff:";str+=v4part;return str}if(parts[5]===0){str="::";if(v4part==="0.0.0.0")v4part="";if(v4part==="0.0.0.1")v4part="1";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word>1];var port=_ntohs(HEAPU16[sa+2>>1]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=HEAP32[sa+4>>2];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[HEAP32[sa+8>>2],HEAP32[sa+12>>2],HEAP32[sa+16>>2],HEAP32[sa+20>>2]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family:family,addr:addr,port:port}}function inetPton4(str){var b=str.split(".");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0}function jstoi_q(str){return parseInt(str)}function inetPton6(str){var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str==="::"){return[0,0,0,0,0,0,0,0]}if(str.startsWith("::")){str=str.replace("::","Z:")}else{str=str.replace("::",":Z:")}if(str.indexOf(".")>0){str=str.replace(new RegExp("[.]","g"),":");words=str.split(":");words[words.length-4]=jstoi_q(words[words.length-4])+jstoi_q(words[words.length-3])*256;words[words.length-3]=jstoi_q(words[words.length-2])+jstoi_q(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(":")}offset=0;z=0;for(w=0;w>1]=2;return 0}case 6:case 7:return 0;case 16:case 8:return-28;case 9:setErrNo(28);return-1;default:{return-28}}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___syscall_statfs64(0,size,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function convertI32PairToI53Checked(lo,hi){return hi+2097152>>>0<4194305-!!lo?(lo>>>0)+hi*4294967296:NaN}function ___syscall_ftruncate64(fd,length_low,length_high){try{var length=convertI32PairToI53Checked(length_low,length_high);if(isNaN(length))return-61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size>>0,(tempDouble=id,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos>>2]=tempI64[0],HEAP32[dirp+pos+4>>2]=tempI64[1];tempI64=[(idx+1)*struct_size>>>0,(tempDouble=(idx+1)*struct_size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos+8>>2]=tempI64[0],HEAP32[dirp+pos+12>>2]=tempI64[1];HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18>>0]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:case 21505:{if(!stream.tty)return-59;return 0}case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:{if(!stream.tty)return-59;return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.get();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.get();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;return 0}case 21524:{if(!stream.tty)return-59;return 0}default:abort("bad ioctl syscall "+op)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~4352;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?SYSCALLS.get():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function writeSockaddr(sa,family,addr,port,addrlen){switch(family){case 2:addr=inetPton4(addr);zeroMemory(sa,16);if(addrlen){HEAP32[addrlen>>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);if(addrlen){HEAP32[addrlen>>2]=28}HEAP32[sa>>2]=family;HEAP32[sa+8>>2]=addr[0];HEAP32[sa+12>>2]=addr[1];HEAP32[sa+16>>2]=addr[2];HEAP32[sa+20>>2]=addr[3];HEAP16[sa+2>>1]=_htons(port);break;default:return 5}return 0}function ___syscall_recvfrom(fd,buf,len,flags,addr,addrlen){try{var sock=getSocketFromFD(fd);var msg=sock.sock_ops.recvmsg(sock,len);if(!msg)return 0;if(addr){var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(msg.addr),msg.port,addrlen)}HEAPU8.set(msg.buffer,buf);return msg.buffer.byteLength}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_sendto(fd,message,length,flags,addr,addr_len){try{var sock=getSocketFromFD(fd);var dest=getSocketAddress(addr,addr_len,true);if(!dest){return FS.write(sock.stream,HEAP8,message,length)}else{return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);if(!times){var atime=Date.now();var mtime=atime}else{var seconds=HEAP32[times>>2];var nanoseconds=HEAP32[times+4>>2];atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=8;seconds=HEAP32[times>>2];nanoseconds=HEAP32[times+4>>2];mtime=seconds*1e3+nanoseconds/(1e3*1e3)}FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __dlinit(main_dso_handle){}var dlopenMissingError="To use dlopen, you need enable dynamic linking, see https://github.com/emscripten-core/emscripten/wiki/Linking";function __dlopen_js(filename,flag){abort(dlopenMissingError)}function __emscripten_date_now(){return Date.now()}var nowIsMonotonic=true;function __emscripten_get_now_is_monotonic(){return nowIsMonotonic}function __gmtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}function __localtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var start=new Date(date.getFullYear(),0,1);var yday=(date.getTime()-start.getTime())/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}function __mmap_js(len,prot,flags,fd,off,allocated){try{var stream=FS.getStream(fd);if(!stream)return-8;var res=FS.mmap(stream,len,off,prot,flags);var ptr=res.ptr;HEAP32[allocated>>2]=res.allocated;return ptr}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __msync_js(addr,len,flags,fd){try{SYSCALLS.doMsync(addr,FS.getStream(fd),len,flags,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __munmap_js(addr,len,prot,flags,fd,offset){try{var stream=FS.getStream(fd);if(stream){if(prot&2){SYSCALLS.doMsync(addr,stream,len,flags,offset)}FS.munmap(stream)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function _tzset_impl(timezone,daylight,tzname){var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAP32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);function extractZone(date){var match=date.toTimeString().match(/\(([A-Za-z ]+)\)$/);return match?match[1]:"GMT"}var winterName=extractZone(winter);var summerName=extractZone(summer);var winterNamePtr=allocateUTF8(winterName);var summerNamePtr=allocateUTF8(summerName);if(summerOffset>2]=winterNamePtr;HEAPU32[tzname+4>>2]=summerNamePtr}else{HEAPU32[tzname>>2]=summerNamePtr;HEAPU32[tzname+4>>2]=winterNamePtr}}function __tzset_js(timezone,daylight,tzname){if(__tzset_js.called)return;__tzset_js.called=true;_tzset_impl(timezone,daylight,tzname)}function _abort(){abort("")}var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function(buffer,bufferLength){const needTempBuf=typeof SharedArrayBuffer!=="undefined"&&Module.HEAPU8.buffer instanceof SharedArrayBuffer;const buf=needTempBuf?new ArrayBuffer(bufferLength):Module.HEAPU8.buffer;const offset=needTempBuf?0:buffer;for(let i=0;i{var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6}}else if(typeof dateNow!="undefined"){_emscripten_get_now=dateNow}else _emscripten_get_now=()=>performance.now();function _emscripten_get_now_res(){if(ENVIRONMENT_IS_NODE){return 1}else if(typeof dateNow!="undefined"){return 1e3}else return 1e3}function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}let alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}var ENV={};function getExecutableName(){return thisProgram||"./this.program"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+"="+env[x])}getEnvStrings.strings=strings}return getEnvStrings.strings}function _environ_get(__environ,environ_buf){var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAPU32[penviron_buf_size>>2]=bufSize;return 0}function _exit(status){exit(status)}function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4;HEAP8[pbuf>>0]=type;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doReadv(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doWritev(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr}return ret}function _fd_pwrite(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt,offset);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1];if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops&&stream.stream_ops.fsync){return-stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _getTempRet0(){return getTempRet0()}function _llvm_eh_typeid_for(type){return type}function _mono_set_timeout(){return __dotnet_runtime.__linker_exports.mono_set_timeout.apply(__dotnet_runtime,arguments)}function _mono_wasm_add_dbg_command_received(){return __dotnet_runtime.__linker_exports.mono_wasm_add_dbg_command_received.apply(__dotnet_runtime,arguments)}function _mono_wasm_asm_loaded(){return __dotnet_runtime.__linker_exports.mono_wasm_asm_loaded.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_cs_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_cs_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_js_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_js_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_create_cs_owned_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_create_cs_owned_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_debugger_log(){return __dotnet_runtime.__linker_exports.mono_wasm_debugger_log.apply(__dotnet_runtime,arguments)}function _mono_wasm_fire_debugger_agent_message(){return __dotnet_runtime.__linker_exports.mono_wasm_fire_debugger_agent_message.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_global_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_global_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_bound_function(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_bound_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_blazor(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_blazor.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_with_args_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_with_args_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_marshal_promise(){return __dotnet_runtime.__linker_exports.mono_wasm_marshal_promise.apply(__dotnet_runtime,arguments)}function _mono_wasm_release_cs_owned_object(){return __dotnet_runtime.__linker_exports.mono_wasm_release_cs_owned_object.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_entrypoint_breakpoint(){return __dotnet_runtime.__linker_exports.mono_wasm_set_entrypoint_breakpoint.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_trace_logger(){return __dotnet_runtime.__linker_exports.mono_wasm_trace_logger.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_from_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_from_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_to_array_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_to_array_ref.apply(__dotnet_runtime,arguments)}function _schedule_background_exec(){return __dotnet_runtime.__linker_exports.schedule_background_exec.apply(__dotnet_runtime,arguments)}function _setTempRet0(val){setTempRet0(val)}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value=="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}else{return thisDate.getFullYear()}}else{return thisDate.getFullYear()-1}}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}else{return"PM"}},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&__isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!__isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":function(date){return date.tm_wday},"%W":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":function(date){return(date.tm_year+1900).toString().substring(2)},"%Y":function(date){return date.tm_year+1900},"%z":function(date){var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.staticInit();Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_readFile"]=FS.readFile;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_unlink"]=FS.unlink;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;let __dotnet_replacement_PThread=false?{}:undefined;if(false){__dotnet_replacement_PThread.loadWasmModuleToWorker=PThread.loadWasmModuleToWorker;__dotnet_replacement_PThread.threadInitTLS=PThread.threadInitTLS;__dotnet_replacement_PThread.allocateUnusedWorker=PThread.allocateUnusedWorker}let __dotnet_replacements={scriptUrl:import.meta.url,fetch:globalThis.fetch,require:require,updateGlobalBufferAndViews:updateGlobalBufferAndViews,pthreadReplacements:__dotnet_replacement_PThread};if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise=import("module").then(mod=>mod.createRequire(import.meta.url))}let __dotnet_exportedAPI=__dotnet_runtime.__initializeImportsAndExports({isGlobal:false,isNode:ENVIRONMENT_IS_NODE,isWorker:ENVIRONMENT_IS_WORKER,isShell:ENVIRONMENT_IS_SHELL,isWeb:ENVIRONMENT_IS_WEB,isPThread:false,quit_:quit_,ExitStatus:ExitStatus,requirePromise:__dotnet_replacements.requirePromise},{mono:MONO,binding:BINDING,internal:INTERNAL,module:Module,marshaled_imports:IMPORTS},__dotnet_replacements,__callbackAPI);updateGlobalBufferAndViews=__dotnet_replacements.updateGlobalBufferAndViews;var fetch=__dotnet_replacements.fetch;_scriptDir=__dirname=scriptDirectory=__dotnet_replacements.scriptDirectory;if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise.then(someRequire=>{require=someRequire})}var noExitRuntime=__dotnet_replacements.noExitRuntime;if(false){PThread.loadWasmModuleToWorker=__dotnet_replacements.pthreadReplacements.loadWasmModuleToWorker;PThread.threadInitTLS=__dotnet_replacements.pthreadReplacements.threadInitTLS;PThread.allocateUnusedWorker=__dotnet_replacements.pthreadReplacements.allocateUnusedWorker}var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var decodeBase64=typeof atob=="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}Module["run"]=run;function exit(status,implicit){EXITSTATUS=status;procExit(status)}function procExit(code){EXITSTATUS=code;if(!keepRuntimeAlive()){if(Module["onExit"])Module["onExit"](code);ABORT=true}quit_(code,new ExitStatus(code))}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run();createDotnetRuntime.ready=createDotnetRuntime.ready.then(()=>{return __dotnet_exportedAPI});
+
+
+ return createDotnetRuntime.ready
+}
+);
+})();
+export default createDotnetRuntime;
+const MONO = {}, BINDING = {}, INTERNAL = {}, IMPORTS = {};
+
+// TODO duplicated from emscripten, so we can use them in the __setEmscriptenEntrypoint
+var ENVIRONMENT_IS_WEB = typeof window == 'object';
+var ENVIRONMENT_IS_WORKER = typeof importScripts == 'function';
+var ENVIRONMENT_IS_NODE = typeof process == 'object' && typeof process.versions == 'object' && typeof process.versions.node == 'string';
+var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER;
+
+__dotnet_runtime.__setEmscriptenEntrypoint(createDotnetRuntime, { isNode: ENVIRONMENT_IS_NODE, isShell: ENVIRONMENT_IS_SHELL, isWeb: ENVIRONMENT_IS_WEB, isWorker: ENVIRONMENT_IS_WORKER });
+const dotnet = __dotnet_runtime.moduleExports.dotnet;
+const exit = __dotnet_runtime.moduleExports.exit;
+export { dotnet, exit, INTERNAL };
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.timezones.blat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.timezones.blat
new file mode 100644
index 000000000..2e1c6dd61
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.timezones.blat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.wasm b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.wasm
new file mode 100644
index 000000000..b48cfb421
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.wasm differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt.dat
new file mode 100644
index 000000000..54093bdd3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_CJK.dat
new file mode 100644
index 000000000..118a60d56
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_CJK.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_EFIGS.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_EFIGS.dat
new file mode 100644
index 000000000..e4c1c9108
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_EFIGS.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_no_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_no_CJK.dat
new file mode 100644
index 000000000..87b08e08a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_no_CJK.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Imaging.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Imaging.resources.dll
new file mode 100644
index 000000000..b655ce1d7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Imaging.resources.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Pdf.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Pdf.resources.dll
new file mode 100644
index 000000000..13b1f8c5c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Pdf.resources.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/mscorlib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/mscorlib.dll
new file mode 100644
index 000000000..ee9a10e48
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/mscorlib.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/netstandard.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/netstandard.dll
new file mode 100644
index 000000000..b66a993aa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/netstandard.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package-lock.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package-lock.json
new file mode 100644
index 000000000..e00090918
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package-lock.json
@@ -0,0 +1,889 @@
+{
+ "name": "GraphSample",
+ "lockfileVersion": 2,
+ "requires": true,
+ "packages": {
+ "": {
+ "dependencies": {
+ "@microsoft/mgt": "^2.10.1",
+ "@microsoft/microsoft-graph-client": "^3.0.5"
+ }
+ },
+ "node_modules/@azure/msal-browser": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.37.0.tgz",
+ "integrity": "sha512-YNGD/W/tw/5wDWlXOfmrVILaxVsorVLxYU2ovmL1PDvxkdudbQRyGk/76l4emqgDAl/kPQeqyivxjOU6w1YfvQ==",
+ "dependencies": {
+ "@azure/msal-common": "13.0.0"
+ },
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/@azure/msal-common": {
+ "version": "13.0.0",
+ "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.0.0.tgz",
+ "integrity": "sha512-GqCOg5H5bouvLij9NFXFkh+asRRxsPBRwnTDsfK7o0KcxYHJbuidKw8/VXpycahGXNxgtuhqtK/n5he+5NhyEA==",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz",
+ "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==",
+ "dependencies": {
+ "regenerator-runtime": "^0.13.11"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@fluentui/web-components": {
+ "version": "0.22.1",
+ "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-0.22.1.tgz",
+ "integrity": "sha512-dnMgBRC2vXPa8Br2DpoJG9Fj+WNDlOEtJPzXDiDZss3ddnhsd1djzOEaHoYWayqYumA6ZU2tet5qaqF2i2lqOQ==",
+ "dependencies": {
+ "@microsoft/fast-colors": "^5.1.0",
+ "@microsoft/fast-element": "^1.0.0",
+ "@microsoft/fast-foundation": "^1.16.0",
+ "lodash-es": "^4.17.20",
+ "tslib": "^1.13.0"
+ }
+ },
+ "node_modules/@microsoft/fast-colors": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz",
+ "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA=="
+ },
+ "node_modules/@microsoft/fast-element": {
+ "version": "1.12.0",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.12.0.tgz",
+ "integrity": "sha512-gQutuDHPKNxUEcQ4pypZT4Wmrbapus+P9s3bR/SEOLsMbNqNoXigGImITygI5zhb+aA5rzflM6O8YWkmRbGkPA=="
+ },
+ "node_modules/@microsoft/fast-foundation": {
+ "version": "1.24.8",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-1.24.8.tgz",
+ "integrity": "sha512-n4O9jPh8BBliF/Yl9FAVhrSoopsRCnva2L432s/fHwLelY9WUeswjO3DidVBFbzXD5u/gzC4LGWJScNe/ZGU4Q==",
+ "dependencies": {
+ "@microsoft/fast-element": "^1.4.0",
+ "@microsoft/fast-web-utilities": "^4.8.0",
+ "@microsoft/tsdoc-config": "^0.13.4",
+ "tabbable": "^5.2.0",
+ "tslib": "^1.13.0"
+ }
+ },
+ "node_modules/@microsoft/fast-web-utilities": {
+ "version": "4.8.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-4.8.1.tgz",
+ "integrity": "sha512-P3xeyUwQ9nPkFrgAdmkOzaXxIq8YqMU5K+LXcoHgJddJCBCKfGWW9OZQOTigLddItTyVyfO8qsJpDQb1TskKHA==",
+ "dependencies": {
+ "exenv-es6": "^1.0.0"
+ },
+ "peerDependencies": {
+ "lodash-es": "^4.17.10"
+ }
+ },
+ "node_modules/@microsoft/mgt": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt/-/mgt-2.10.1.tgz",
+ "integrity": "sha512-6zLHXDyif6rAlua1fjcor1kMpHTzWlmgQNsQfcFhGOxi/Nxg4hlFOCqKawWdGcEHuBDs4p35/mDXJNGBgML0NA==",
+ "dependencies": {
+ "@microsoft/mgt-components": "2.10.1",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/mgt-msal-provider": "2.10.1",
+ "@microsoft/mgt-msal2-provider": "2.10.1",
+ "@microsoft/mgt-proxy-provider": "2.10.1",
+ "@microsoft/mgt-sharepoint-provider": "2.10.1",
+ "@microsoft/mgt-teams-msal2-provider": "2.10.1",
+ "@microsoft/mgt-teams-provider": "2.10.1"
+ }
+ },
+ "node_modules/@microsoft/mgt-components": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-2.10.1.tgz",
+ "integrity": "sha512-uw760pZGXxkll4Uury6RoWvf0y3/IJBte55ltlCz2DunPeyIcUZ3QbA2E21EebIvMlbXwgVuUx2vBXVP9yMzdw==",
+ "dependencies": {
+ "@fluentui/web-components": "0.22.1",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "@microsoft/microsoft-graph-types": "^2.0.0",
+ "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview",
+ "office-ui-fabric-core": "11.0.0"
+ }
+ },
+ "node_modules/@microsoft/mgt-components/node_modules/@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ },
+ "node_modules/@microsoft/mgt-element": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-2.10.1.tgz",
+ "integrity": "sha512-xRyuCOahxxpWuGPrpycwfFchcGowyC7DjV8bPbjtazh6HegKE6JjGWd+X5HwIN5Wf9JduL32zoWoX/GwfSkIgg==",
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "idb": "6.0.0",
+ "lit-element": "^2.4.0"
+ }
+ },
+ "node_modules/@microsoft/mgt-element/node_modules/@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ },
+ "node_modules/@microsoft/mgt-msal-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal-provider/-/mgt-msal-provider-2.10.1.tgz",
+ "integrity": "sha512-G5O6iQ2z9GF1dSjX4ErMmjaNb+8xkhOI9D8A7Oo5uBMlQZJeBCJ9vhd78oBkx1OZWNCh12lxKg5r6TePYeuczw==",
+ "dependencies": {
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "msal": "^1.4.10"
+ }
+ },
+ "node_modules/@microsoft/mgt-msal-provider/node_modules/@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ },
+ "node_modules/@microsoft/mgt-msal2-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal2-provider/-/mgt-msal2-provider-2.10.1.tgz",
+ "integrity": "sha512-4hT5jncgcCxX0FidS497lJxobaOnXhhjsGJLvjbdeAdH1Abg3sNP1WinCJfKSNagT3kvtM0s/JdqHOIPNdk4Xw==",
+ "dependencies": {
+ "@azure/msal-browser": "^2.22.0",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1"
+ }
+ },
+ "node_modules/@microsoft/mgt-msal2-provider/node_modules/@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ },
+ "node_modules/@microsoft/mgt-proxy-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-proxy-provider/-/mgt-proxy-provider-2.10.1.tgz",
+ "integrity": "sha512-Xl3b3+6Asie0dMtUs3CkVhy8dJ4Wp2jpBdjIF5KetC8aNZpiZwwBocowiqNPNgdBtWoYkzar27ArgHy4UD5Mvg==",
+ "dependencies": {
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1"
+ }
+ },
+ "node_modules/@microsoft/mgt-proxy-provider/node_modules/@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ },
+ "node_modules/@microsoft/mgt-sharepoint-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-2.10.1.tgz",
+ "integrity": "sha512-ceZl8wkZpMleq4Btgpu2P+FWiOHBI4rbdj5fXHAdF7uvj3jhR/avw3LmrjFQxuqy/skOcpU0vcCBFgi85pHkrA==",
+ "dependencies": {
+ "@microsoft/mgt-element": "2.10.1"
+ }
+ },
+ "node_modules/@microsoft/mgt-teams-msal2-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-msal2-provider/-/mgt-teams-msal2-provider-2.10.1.tgz",
+ "integrity": "sha512-l1BrF5jtwi6BMSFjaMu9lpuJ8KKoNDPp/vdBFDaF8ZeY9ovlW92fFTZ1wQ2DmDsyitPreHBiqzRJHb+FCscjdg==",
+ "dependencies": {
+ "@azure/msal-browser": "^2.22.0",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/mgt-msal2-provider": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1"
+ }
+ },
+ "node_modules/@microsoft/mgt-teams-msal2-provider/node_modules/@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ },
+ "node_modules/@microsoft/mgt-teams-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-provider/-/mgt-teams-provider-2.10.1.tgz",
+ "integrity": "sha512-ZO7Mk4E/fGUkEG4Ay0fMVaevvLCXQ7w7qQNO6gCO1qtnANbOm9ESa3T6diqZIR/4LhjQ1nx9mbrLIY2z/abVHQ==",
+ "dependencies": {
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/mgt-msal-provider": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "msal": "^1.4.10"
+ }
+ },
+ "node_modules/@microsoft/mgt-teams-provider/node_modules/@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ },
+ "node_modules/@microsoft/microsoft-graph-client": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.5.tgz",
+ "integrity": "sha512-xQADFNLUhE78RzYadFZtOmy/5wBZenSZhVK193m40MTDC5hl1aYMQO1QOJApnKga8WcvMCDCU10taRhuXTOz5w==",
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "tslib": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@azure/identity": {
+ "optional": true
+ },
+ "@azure/msal-browser": {
+ "optional": true
+ },
+ "buffer": {
+ "optional": true
+ },
+ "stream-browserify": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@microsoft/microsoft-graph-client/node_modules/tslib": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
+ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
+ },
+ "node_modules/@microsoft/microsoft-graph-types": {
+ "version": "2.31.0",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.31.0.tgz",
+ "integrity": "sha512-ZEVraeRK3qmAs0sVenlEsoMKbNO4T960atGtZNYNWBd8MZ9KMeOF/+6HRVAYiGTRUo+WLlweMKXlDm+TDKGleQ=="
+ },
+ "node_modules/@microsoft/microsoft-graph-types-beta": {
+ "version": "0.16.0-preview",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.16.0-preview.tgz",
+ "integrity": "sha512-73d1b8pv8YnKx+oiQtMZDSey4ohmx/cfM/vFiAa5ZyLSj4nr9y/7wIT5jTIO+tkdniyBsfN/QQeDiRwyutcxAQ=="
+ },
+ "node_modules/@microsoft/tsdoc": {
+ "version": "0.12.24",
+ "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.24.tgz",
+ "integrity": "sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg=="
+ },
+ "node_modules/@microsoft/tsdoc-config": {
+ "version": "0.13.9",
+ "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.13.9.tgz",
+ "integrity": "sha512-VqqZn+rT9f6XujFPFR2aN9XKF/fuir/IzKVzoxI0vXIzxysp4ee6S2jCakmlGFHEasibifFTsJr7IYmRPxfzYw==",
+ "dependencies": {
+ "@microsoft/tsdoc": "0.12.24",
+ "ajv": "~6.12.6",
+ "jju": "~1.4.0",
+ "resolve": "~1.19.0"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/exenv-es6": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz",
+ "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ=="
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ },
+ "node_modules/has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dependencies": {
+ "function-bind": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/idb": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz",
+ "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA=="
+ },
+ "node_modules/is-core-module": {
+ "version": "2.12.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz",
+ "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==",
+ "dependencies": {
+ "has": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/jju": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz",
+ "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA=="
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
+ },
+ "node_modules/lit-element": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz",
+ "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==",
+ "dependencies": {
+ "lit-html": "^1.1.1"
+ }
+ },
+ "node_modules/lit-html": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz",
+ "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA=="
+ },
+ "node_modules/lodash-es": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
+ "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
+ },
+ "node_modules/msal": {
+ "version": "1.4.18",
+ "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.18.tgz",
+ "integrity": "sha512-QyWMWrZqpwtK6LEqhwtbikxIWqA1EOcdMvDeIDjIXdGU29wM4orwq538sPe1+JfKDIgPmJj1Fgi5B7luaw/IyA==",
+ "dependencies": {
+ "tslib": "^1.9.3"
+ },
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/office-ui-fabric-core": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.0.tgz",
+ "integrity": "sha512-K6+KGnBXXjfSxxZpp+4oDXVLgUc//7OnXrn8F08VoJnGhEz27WUf4ZuMa32SjGoqirWlb4JlKkXbOpC9cis6dQ=="
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
+ },
+ "node_modules/punycode": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
+ "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/regenerator-runtime": {
+ "version": "0.13.11",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
+ "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
+ },
+ "node_modules/resolve": {
+ "version": "1.19.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
+ "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
+ "dependencies": {
+ "is-core-module": "^2.1.0",
+ "path-parse": "^1.0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/tabbable": {
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz",
+ "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA=="
+ },
+ "node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ }
+ },
+ "dependencies": {
+ "@azure/msal-browser": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.37.0.tgz",
+ "integrity": "sha512-YNGD/W/tw/5wDWlXOfmrVILaxVsorVLxYU2ovmL1PDvxkdudbQRyGk/76l4emqgDAl/kPQeqyivxjOU6w1YfvQ==",
+ "requires": {
+ "@azure/msal-common": "13.0.0"
+ }
+ },
+ "@azure/msal-common": {
+ "version": "13.0.0",
+ "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.0.0.tgz",
+ "integrity": "sha512-GqCOg5H5bouvLij9NFXFkh+asRRxsPBRwnTDsfK7o0KcxYHJbuidKw8/VXpycahGXNxgtuhqtK/n5he+5NhyEA=="
+ },
+ "@babel/runtime": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz",
+ "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==",
+ "requires": {
+ "regenerator-runtime": "^0.13.11"
+ }
+ },
+ "@fluentui/web-components": {
+ "version": "0.22.1",
+ "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-0.22.1.tgz",
+ "integrity": "sha512-dnMgBRC2vXPa8Br2DpoJG9Fj+WNDlOEtJPzXDiDZss3ddnhsd1djzOEaHoYWayqYumA6ZU2tet5qaqF2i2lqOQ==",
+ "requires": {
+ "@microsoft/fast-colors": "^5.1.0",
+ "@microsoft/fast-element": "^1.0.0",
+ "@microsoft/fast-foundation": "^1.16.0",
+ "lodash-es": "^4.17.20",
+ "tslib": "^1.13.0"
+ }
+ },
+ "@microsoft/fast-colors": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz",
+ "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA=="
+ },
+ "@microsoft/fast-element": {
+ "version": "1.12.0",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.12.0.tgz",
+ "integrity": "sha512-gQutuDHPKNxUEcQ4pypZT4Wmrbapus+P9s3bR/SEOLsMbNqNoXigGImITygI5zhb+aA5rzflM6O8YWkmRbGkPA=="
+ },
+ "@microsoft/fast-foundation": {
+ "version": "1.24.8",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-1.24.8.tgz",
+ "integrity": "sha512-n4O9jPh8BBliF/Yl9FAVhrSoopsRCnva2L432s/fHwLelY9WUeswjO3DidVBFbzXD5u/gzC4LGWJScNe/ZGU4Q==",
+ "requires": {
+ "@microsoft/fast-element": "^1.4.0",
+ "@microsoft/fast-web-utilities": "^4.8.0",
+ "@microsoft/tsdoc-config": "^0.13.4",
+ "tabbable": "^5.2.0",
+ "tslib": "^1.13.0"
+ }
+ },
+ "@microsoft/fast-web-utilities": {
+ "version": "4.8.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-4.8.1.tgz",
+ "integrity": "sha512-P3xeyUwQ9nPkFrgAdmkOzaXxIq8YqMU5K+LXcoHgJddJCBCKfGWW9OZQOTigLddItTyVyfO8qsJpDQb1TskKHA==",
+ "requires": {
+ "exenv-es6": "^1.0.0"
+ }
+ },
+ "@microsoft/mgt": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt/-/mgt-2.10.1.tgz",
+ "integrity": "sha512-6zLHXDyif6rAlua1fjcor1kMpHTzWlmgQNsQfcFhGOxi/Nxg4hlFOCqKawWdGcEHuBDs4p35/mDXJNGBgML0NA==",
+ "requires": {
+ "@microsoft/mgt-components": "2.10.1",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/mgt-msal-provider": "2.10.1",
+ "@microsoft/mgt-msal2-provider": "2.10.1",
+ "@microsoft/mgt-proxy-provider": "2.10.1",
+ "@microsoft/mgt-sharepoint-provider": "2.10.1",
+ "@microsoft/mgt-teams-msal2-provider": "2.10.1",
+ "@microsoft/mgt-teams-provider": "2.10.1"
+ }
+ },
+ "@microsoft/mgt-components": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-2.10.1.tgz",
+ "integrity": "sha512-uw760pZGXxkll4Uury6RoWvf0y3/IJBte55ltlCz2DunPeyIcUZ3QbA2E21EebIvMlbXwgVuUx2vBXVP9yMzdw==",
+ "requires": {
+ "@fluentui/web-components": "0.22.1",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "@microsoft/microsoft-graph-types": "^2.0.0",
+ "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview",
+ "office-ui-fabric-core": "11.0.0"
+ },
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ }
+ }
+ },
+ "@microsoft/mgt-element": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-2.10.1.tgz",
+ "integrity": "sha512-xRyuCOahxxpWuGPrpycwfFchcGowyC7DjV8bPbjtazh6HegKE6JjGWd+X5HwIN5Wf9JduL32zoWoX/GwfSkIgg==",
+ "requires": {
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "idb": "6.0.0",
+ "lit-element": "^2.4.0"
+ },
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ }
+ }
+ },
+ "@microsoft/mgt-msal-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal-provider/-/mgt-msal-provider-2.10.1.tgz",
+ "integrity": "sha512-G5O6iQ2z9GF1dSjX4ErMmjaNb+8xkhOI9D8A7Oo5uBMlQZJeBCJ9vhd78oBkx1OZWNCh12lxKg5r6TePYeuczw==",
+ "requires": {
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "msal": "^1.4.10"
+ },
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ }
+ }
+ },
+ "@microsoft/mgt-msal2-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal2-provider/-/mgt-msal2-provider-2.10.1.tgz",
+ "integrity": "sha512-4hT5jncgcCxX0FidS497lJxobaOnXhhjsGJLvjbdeAdH1Abg3sNP1WinCJfKSNagT3kvtM0s/JdqHOIPNdk4Xw==",
+ "requires": {
+ "@azure/msal-browser": "^2.22.0",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1"
+ },
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ }
+ }
+ },
+ "@microsoft/mgt-proxy-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-proxy-provider/-/mgt-proxy-provider-2.10.1.tgz",
+ "integrity": "sha512-Xl3b3+6Asie0dMtUs3CkVhy8dJ4Wp2jpBdjIF5KetC8aNZpiZwwBocowiqNPNgdBtWoYkzar27ArgHy4UD5Mvg==",
+ "requires": {
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1"
+ },
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ }
+ }
+ },
+ "@microsoft/mgt-sharepoint-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-2.10.1.tgz",
+ "integrity": "sha512-ceZl8wkZpMleq4Btgpu2P+FWiOHBI4rbdj5fXHAdF7uvj3jhR/avw3LmrjFQxuqy/skOcpU0vcCBFgi85pHkrA==",
+ "requires": {
+ "@microsoft/mgt-element": "2.10.1"
+ }
+ },
+ "@microsoft/mgt-teams-msal2-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-msal2-provider/-/mgt-teams-msal2-provider-2.10.1.tgz",
+ "integrity": "sha512-l1BrF5jtwi6BMSFjaMu9lpuJ8KKoNDPp/vdBFDaF8ZeY9ovlW92fFTZ1wQ2DmDsyitPreHBiqzRJHb+FCscjdg==",
+ "requires": {
+ "@azure/msal-browser": "^2.22.0",
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/mgt-msal2-provider": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1"
+ },
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ }
+ }
+ },
+ "@microsoft/mgt-teams-provider": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-provider/-/mgt-teams-provider-2.10.1.tgz",
+ "integrity": "sha512-ZO7Mk4E/fGUkEG4Ay0fMVaevvLCXQ7w7qQNO6gCO1qtnANbOm9ESa3T6diqZIR/4LhjQ1nx9mbrLIY2z/abVHQ==",
+ "requires": {
+ "@microsoft/mgt-element": "2.10.1",
+ "@microsoft/mgt-msal-provider": "2.10.1",
+ "@microsoft/microsoft-graph-client": "^2.2.1",
+ "msal": "^1.4.10"
+ },
+ "dependencies": {
+ "@microsoft/microsoft-graph-client": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz",
+ "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==",
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "msal": "^1.4.4",
+ "tslib": "^1.9.3"
+ }
+ }
+ }
+ },
+ "@microsoft/microsoft-graph-client": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.5.tgz",
+ "integrity": "sha512-xQADFNLUhE78RzYadFZtOmy/5wBZenSZhVK193m40MTDC5hl1aYMQO1QOJApnKga8WcvMCDCU10taRhuXTOz5w==",
+ "requires": {
+ "@babel/runtime": "^7.12.5",
+ "tslib": "^2.2.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
+ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
+ }
+ }
+ },
+ "@microsoft/microsoft-graph-types": {
+ "version": "2.31.0",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.31.0.tgz",
+ "integrity": "sha512-ZEVraeRK3qmAs0sVenlEsoMKbNO4T960atGtZNYNWBd8MZ9KMeOF/+6HRVAYiGTRUo+WLlweMKXlDm+TDKGleQ=="
+ },
+ "@microsoft/microsoft-graph-types-beta": {
+ "version": "0.16.0-preview",
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.16.0-preview.tgz",
+ "integrity": "sha512-73d1b8pv8YnKx+oiQtMZDSey4ohmx/cfM/vFiAa5ZyLSj4nr9y/7wIT5jTIO+tkdniyBsfN/QQeDiRwyutcxAQ=="
+ },
+ "@microsoft/tsdoc": {
+ "version": "0.12.24",
+ "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.24.tgz",
+ "integrity": "sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg=="
+ },
+ "@microsoft/tsdoc-config": {
+ "version": "0.13.9",
+ "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.13.9.tgz",
+ "integrity": "sha512-VqqZn+rT9f6XujFPFR2aN9XKF/fuir/IzKVzoxI0vXIzxysp4ee6S2jCakmlGFHEasibifFTsJr7IYmRPxfzYw==",
+ "requires": {
+ "@microsoft/tsdoc": "0.12.24",
+ "ajv": "~6.12.6",
+ "jju": "~1.4.0",
+ "resolve": "~1.19.0"
+ }
+ },
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "exenv-es6": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz",
+ "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ=="
+ },
+ "fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "idb": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz",
+ "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA=="
+ },
+ "is-core-module": {
+ "version": "2.12.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz",
+ "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==",
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "jju": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz",
+ "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA=="
+ },
+ "json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
+ },
+ "lit-element": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz",
+ "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==",
+ "requires": {
+ "lit-html": "^1.1.1"
+ }
+ },
+ "lit-html": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz",
+ "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA=="
+ },
+ "lodash-es": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
+ "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
+ },
+ "msal": {
+ "version": "1.4.18",
+ "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.18.tgz",
+ "integrity": "sha512-QyWMWrZqpwtK6LEqhwtbikxIWqA1EOcdMvDeIDjIXdGU29wM4orwq538sPe1+JfKDIgPmJj1Fgi5B7luaw/IyA==",
+ "requires": {
+ "tslib": "^1.9.3"
+ }
+ },
+ "office-ui-fabric-core": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.0.tgz",
+ "integrity": "sha512-K6+KGnBXXjfSxxZpp+4oDXVLgUc//7OnXrn8F08VoJnGhEz27WUf4ZuMa32SjGoqirWlb4JlKkXbOpC9cis6dQ=="
+ },
+ "path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
+ },
+ "punycode": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
+ "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA=="
+ },
+ "regenerator-runtime": {
+ "version": "0.13.11",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
+ "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
+ },
+ "resolve": {
+ "version": "1.19.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
+ "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
+ "requires": {
+ "is-core-module": "^2.1.0",
+ "path-parse": "^1.0.6"
+ }
+ },
+ "tabbable": {
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz",
+ "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA=="
+ },
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
+ },
+ "uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ }
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package.json
new file mode 100644
index 000000000..0f40843e0
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package.json
@@ -0,0 +1,6 @@
+{
+ "dependencies": {
+ "@microsoft/mgt": "^2.10.1",
+ "@microsoft/microsoft-graph-client": "^3.0.5"
+ }
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll
new file mode 100644
index 000000000..2c8f63787
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll.gz
new file mode 100644
index 000000000..8707ba174
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll
new file mode 100644
index 000000000..a97c0efa8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll.gz
new file mode 100644
index 000000000..22dcce5c4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll
new file mode 100644
index 000000000..c5019ede1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll.gz
new file mode 100644
index 000000000..13cf892df
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll
new file mode 100644
index 000000000..17936adff
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll.gz
new file mode 100644
index 000000000..a0c3c5a5a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll
new file mode 100644
index 000000000..730ec4b53
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll.gz
new file mode 100644
index 000000000..486efb6f3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll
new file mode 100644
index 000000000..c86ec00ff
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll.gz
new file mode 100644
index 000000000..b6e7faa73
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll
new file mode 100644
index 000000000..53c55570c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll.gz
new file mode 100644
index 000000000..7a94a1d69
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll
new file mode 100644
index 000000000..8b8bad035
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll.gz
new file mode 100644
index 000000000..bca5c6366
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll
new file mode 100644
index 000000000..9265a5833
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll.gz
new file mode 100644
index 000000000..4b76352d0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll
new file mode 100644
index 000000000..79fa1fa95
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll.gz
new file mode 100644
index 000000000..ae5a8441e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll
new file mode 100644
index 000000000..39aa546ad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll.gz
new file mode 100644
index 000000000..3f46cd8c5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll
new file mode 100644
index 000000000..1857a116d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll.gz
new file mode 100644
index 000000000..ec0c14839
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll
new file mode 100644
index 000000000..ae466c458
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll.gz
new file mode 100644
index 000000000..62daf116f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll
new file mode 100644
index 000000000..92224c755
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll.gz
new file mode 100644
index 000000000..8753af853
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll
new file mode 100644
index 000000000..4087361e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll.gz
new file mode 100644
index 000000000..ba7aa1c8e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb
new file mode 100644
index 000000000..758251dcf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb.gz
new file mode 100644
index 000000000..049d1a876
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll
new file mode 100644
index 000000000..1ddfb5cf7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz
new file mode 100644
index 000000000..46a2f9e87
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll
new file mode 100644
index 000000000..648cd5134
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz
new file mode 100644
index 000000000..784dd5897
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll
new file mode 100644
index 000000000..d524cc4ee
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz
new file mode 100644
index 000000000..382c220a0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll
new file mode 100644
index 000000000..4368c70bf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz
new file mode 100644
index 000000000..f217c5649
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
new file mode 100644
index 000000000..3db1b73c6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz
new file mode 100644
index 000000000..25bc6f6b2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll
new file mode 100644
index 000000000..8b4d59b74
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz
new file mode 100644
index 000000000..f35ffb4aa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll
new file mode 100644
index 000000000..9b2c61d61
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz
new file mode 100644
index 000000000..7dbc5551a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll
new file mode 100644
index 000000000..85d6c4a57
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz
new file mode 100644
index 000000000..ef935d7d9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll
new file mode 100644
index 000000000..dc1e804ce
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll.gz
new file mode 100644
index 000000000..0dda3925b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll
new file mode 100644
index 000000000..9dce9bcfa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz
new file mode 100644
index 000000000..e204a4197
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll
new file mode 100644
index 000000000..a5b7ff99a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz
new file mode 100644
index 000000000..e5759ed4d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll
new file mode 100644
index 000000000..04a517768
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll.gz
new file mode 100644
index 000000000..e43da26d6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 000000000..058b12445
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz
new file mode 100644
index 000000000..c6fee6cc1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 000000000..60441e996
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz
new file mode 100644
index 000000000..a0ddb5b4b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 000000000..def889adc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz
new file mode 100644
index 000000000..c4a475e16
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 000000000..e8bdcc1d3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz
new file mode 100644
index 000000000..31185e513
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 000000000..fd14a9892
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz
new file mode 100644
index 000000000..ede9a06bd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 000000000..048ba4129
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz
new file mode 100644
index 000000000..8baf0ae05
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 000000000..2dcd31b5c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz
new file mode 100644
index 000000000..cebbb4637
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 000000000..dc9b7ee37
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz
new file mode 100644
index 000000000..705305507
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 000000000..b186402c6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz
new file mode 100644
index 000000000..c1f8fc751
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 000000000..683ac380f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz
new file mode 100644
index 000000000..32cc02a03
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 000000000..6c4181888
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz
new file mode 100644
index 000000000..409841413
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll
new file mode 100644
index 000000000..852830a1a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll.gz
new file mode 100644
index 000000000..d5d520f4d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 000000000..41909d250
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz
new file mode 100644
index 000000000..e69a99c4c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll
new file mode 100644
index 000000000..f21b68bdf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz
new file mode 100644
index 000000000..ac85744b4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll
new file mode 100644
index 000000000..09a4ad508
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz
new file mode 100644
index 000000000..d6db1e5fc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 000000000..995314316
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz
new file mode 100644
index 000000000..2c0acb195
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll
new file mode 100644
index 000000000..0b16fef14
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll.gz
new file mode 100644
index 000000000..9ea20ca6b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll
new file mode 100644
index 000000000..61802fbfb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll.gz
new file mode 100644
index 000000000..715a46ec7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll
new file mode 100644
index 000000000..172873770
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll.gz
new file mode 100644
index 000000000..6fd854304
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll
new file mode 100644
index 000000000..cffae0f13
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll.gz
new file mode 100644
index 000000000..eab27ba9e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll
new file mode 100644
index 000000000..5dc9e9748
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll.gz
new file mode 100644
index 000000000..076bd4ef2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll
new file mode 100644
index 000000000..22b2a2840
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz
new file mode 100644
index 000000000..aabe6fb8d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll
new file mode 100644
index 000000000..b96a33418
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll.gz
new file mode 100644
index 000000000..2d3532369
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
new file mode 100644
index 000000000..7197d3519
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz
new file mode 100644
index 000000000..74bb09b2a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll
new file mode 100644
index 000000000..7fbcdd9f6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll.gz
new file mode 100644
index 000000000..473239588
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll
new file mode 100644
index 000000000..b213bdce0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll.gz
new file mode 100644
index 000000000..ca9a4a2b1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll
new file mode 100644
index 000000000..fb38f8e84
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz
new file mode 100644
index 000000000..b2d40d5a5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll
new file mode 100644
index 000000000..aab7b21bc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz
new file mode 100644
index 000000000..738029f3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll
new file mode 100644
index 000000000..a789f3626
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll.gz
new file mode 100644
index 000000000..320ecad3c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll
new file mode 100644
index 000000000..ed8ff39f7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll.gz
new file mode 100644
index 000000000..cf6625325
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll
new file mode 100644
index 000000000..fb9aa1863
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz
new file mode 100644
index 000000000..89eee14e5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll
new file mode 100644
index 000000000..c21ff4a5e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll.gz
new file mode 100644
index 000000000..6140df868
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll
new file mode 100644
index 000000000..fbf60ab04
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll.gz
new file mode 100644
index 000000000..2f88b9725
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll
new file mode 100644
index 000000000..d15c666ab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll.gz
new file mode 100644
index 000000000..ff307ac7d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll
new file mode 100644
index 000000000..01dec16aa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll.gz
new file mode 100644
index 000000000..8e2765edc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll
new file mode 100644
index 000000000..c9df990e1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz
new file mode 100644
index 000000000..a4e4c6a50
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll
new file mode 100644
index 000000000..79d79a381
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz
new file mode 100644
index 000000000..e459afa1b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll
new file mode 100644
index 000000000..72f4b2c35
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz
new file mode 100644
index 000000000..4243b3dc9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll
new file mode 100644
index 000000000..529bbeff7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz
new file mode 100644
index 000000000..0044b399a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll
new file mode 100644
index 000000000..c8980cf51
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll.gz
new file mode 100644
index 000000000..5809ced8b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll
new file mode 100644
index 000000000..dc5043a21
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll.gz
new file mode 100644
index 000000000..a5f3bd197
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll
new file mode 100644
index 000000000..db42ed05e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll.gz
new file mode 100644
index 000000000..298a06413
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll
new file mode 100644
index 000000000..b57b81758
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll.gz
new file mode 100644
index 000000000..13ad4e16f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll
new file mode 100644
index 000000000..d035c38b4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll.gz
new file mode 100644
index 000000000..fb713c0c1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll
new file mode 100644
index 000000000..9e491c83c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll.gz
new file mode 100644
index 000000000..d6b4fe7d6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb
new file mode 100644
index 000000000..547f3024f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb.gz
new file mode 100644
index 000000000..14da34411
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll
new file mode 100644
index 000000000..c1a7f0744
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll.gz
new file mode 100644
index 000000000..3123b88f9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll
new file mode 100644
index 000000000..9b68e856c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll.gz
new file mode 100644
index 000000000..b89fde0a2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll
new file mode 100644
index 000000000..88359450a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll.gz
new file mode 100644
index 000000000..a78162d1d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll
new file mode 100644
index 000000000..6e117cddb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll.gz
new file mode 100644
index 000000000..89705cb32
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll
new file mode 100644
index 000000000..68600f9af
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz
new file mode 100644
index 000000000..98f5cb3db
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll
new file mode 100644
index 000000000..42ff9558b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll.gz
new file mode 100644
index 000000000..c9726119a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll
new file mode 100644
index 000000000..a786e0fa6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz
new file mode 100644
index 000000000..aec64973c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll
new file mode 100644
index 000000000..19d0895c0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll.gz
new file mode 100644
index 000000000..92b034ece
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll
new file mode 100644
index 000000000..5fe96d587
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll.gz
new file mode 100644
index 000000000..a591af398
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll
new file mode 100644
index 000000000..817a8403d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz
new file mode 100644
index 000000000..9fe38781a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll
new file mode 100644
index 000000000..ae1230f3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz
new file mode 100644
index 000000000..54adc7112
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll
new file mode 100644
index 000000000..ec467f57c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz
new file mode 100644
index 000000000..921ed3cf8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll
new file mode 100644
index 000000000..ac8e43602
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz
new file mode 100644
index 000000000..f252e9384
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll
new file mode 100644
index 000000000..f1c270e5d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz
new file mode 100644
index 000000000..a7d13ee3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll
new file mode 100644
index 000000000..a18f987ca
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll.gz
new file mode 100644
index 000000000..975531bab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll
new file mode 100644
index 000000000..44c4babfe
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll.gz
new file mode 100644
index 000000000..b4de63f44
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll
new file mode 100644
index 000000000..649bb86f6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll.gz
new file mode 100644
index 000000000..aedbd1e76
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll
new file mode 100644
index 000000000..43dbcbc20
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll.gz
new file mode 100644
index 000000000..130ea0354
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll
new file mode 100644
index 000000000..49a2d3b5e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll.gz
new file mode 100644
index 000000000..84a456cee
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll
new file mode 100644
index 000000000..c37f5144c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz
new file mode 100644
index 000000000..ba0513f2e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll
new file mode 100644
index 000000000..5edabd59f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll.gz
new file mode 100644
index 000000000..67c60062e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll
new file mode 100644
index 000000000..6022dcafc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz
new file mode 100644
index 000000000..dedf0dda2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll
new file mode 100644
index 000000000..e3be49797
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz
new file mode 100644
index 000000000..b15049b28
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 000000000..6ebbfb40e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz
new file mode 100644
index 000000000..be7c473a1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll
new file mode 100644
index 000000000..e00ee616b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz
new file mode 100644
index 000000000..b7c57202d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll
new file mode 100644
index 000000000..d312f6aad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz
new file mode 100644
index 000000000..c599b6b7c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll
new file mode 100644
index 000000000..90fedf27d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz
new file mode 100644
index 000000000..45825c5f7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll
new file mode 100644
index 000000000..4dceedb74
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz
new file mode 100644
index 000000000..a6e199d73
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll
new file mode 100644
index 000000000..8840d760e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz
new file mode 100644
index 000000000..def0edbdd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll
new file mode 100644
index 000000000..8aa04ee74
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz
new file mode 100644
index 000000000..5b526d4eb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll
new file mode 100644
index 000000000..e192e5f20
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz
new file mode 100644
index 000000000..543af01b9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll
new file mode 100644
index 000000000..f9420d62a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz
new file mode 100644
index 000000000..3b6793008
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll
new file mode 100644
index 000000000..6a81fbfe7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll.gz
new file mode 100644
index 000000000..66220292e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll
new file mode 100644
index 000000000..f31a2b99e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz
new file mode 100644
index 000000000..19711ce43
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll
new file mode 100644
index 000000000..76abc7e8b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll.gz
new file mode 100644
index 000000000..16ad484a9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll
new file mode 100644
index 000000000..85bab67ec
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll.gz
new file mode 100644
index 000000000..0f83a8957
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll
new file mode 100644
index 000000000..5cbf030c2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz
new file mode 100644
index 000000000..9ab6c980a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll
new file mode 100644
index 000000000..3cf9baa98
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz
new file mode 100644
index 000000000..3a52f3467
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll
new file mode 100644
index 000000000..6084688ac
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll.gz
new file mode 100644
index 000000000..4757af788
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll
new file mode 100644
index 000000000..d57490f8a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz
new file mode 100644
index 000000000..0e31f24ec
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll
new file mode 100644
index 000000000..8000ae034
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz
new file mode 100644
index 000000000..25cb1d748
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll
new file mode 100644
index 000000000..3bf1c60c0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz
new file mode 100644
index 000000000..ab15d34f5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll
new file mode 100644
index 000000000..991a82327
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll.gz
new file mode 100644
index 000000000..da85bfa1a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll
new file mode 100644
index 000000000..2dae9283f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz
new file mode 100644
index 000000000..eac56af92
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll
new file mode 100644
index 000000000..aee8f148d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz
new file mode 100644
index 000000000..c2a578b9b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll
new file mode 100644
index 000000000..a2dccf0a4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz
new file mode 100644
index 000000000..085a4bc5d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll
new file mode 100644
index 000000000..f7912bec9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz
new file mode 100644
index 000000000..bc93ed477
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll
new file mode 100644
index 000000000..dd6c782bb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll.gz
new file mode 100644
index 000000000..fb616327b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll
new file mode 100644
index 000000000..486d49939
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz
new file mode 100644
index 000000000..1ac4535d5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll
new file mode 100644
index 000000000..12c945860
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz
new file mode 100644
index 000000000..30ed72cde
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll
new file mode 100644
index 000000000..5460d2b3f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll.gz
new file mode 100644
index 000000000..b905654d2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll
new file mode 100644
index 000000000..cc7de0ce1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll.gz
new file mode 100644
index 000000000..631250ce0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll
new file mode 100644
index 000000000..4059ec2e6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz
new file mode 100644
index 000000000..35d3488bd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll
new file mode 100644
index 000000000..1cb4c464c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll.gz
new file mode 100644
index 000000000..06d40ba66
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll
new file mode 100644
index 000000000..901de5484
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz
new file mode 100644
index 000000000..38baf3c4a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll
new file mode 100644
index 000000000..f5c583f88
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll.gz
new file mode 100644
index 000000000..88a1a9012
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll
new file mode 100644
index 000000000..19934cb40
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll.gz
new file mode 100644
index 000000000..ae8ca4647
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll
new file mode 100644
index 000000000..619a95967
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll.gz
new file mode 100644
index 000000000..3da0cac6c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll
new file mode 100644
index 000000000..e2887efbf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll.gz
new file mode 100644
index 000000000..63bcbeb0c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll
new file mode 100644
index 000000000..0818cb2d4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll.gz
new file mode 100644
index 000000000..bcb263e26
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll
new file mode 100644
index 000000000..fc5990366
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll.gz
new file mode 100644
index 000000000..adb1656d1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll
new file mode 100644
index 000000000..6f2a3e0ad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll.gz
new file mode 100644
index 000000000..574afdeae
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll
new file mode 100644
index 000000000..ef420f782
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll.gz
new file mode 100644
index 000000000..e374e801a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll
new file mode 100644
index 000000000..9c5dc7fd1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll.gz
new file mode 100644
index 000000000..913a3c067
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll
new file mode 100644
index 000000000..40c4c07ff
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll.gz
new file mode 100644
index 000000000..b66c41225
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll
new file mode 100644
index 000000000..279b83975
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll.gz
new file mode 100644
index 000000000..a88471e1d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll
new file mode 100644
index 000000000..12da5a2fe
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll.gz
new file mode 100644
index 000000000..fe3aa79f7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll
new file mode 100644
index 000000000..7329dc606
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll.gz
new file mode 100644
index 000000000..5a161e44d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll
new file mode 100644
index 000000000..a0273c543
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz
new file mode 100644
index 000000000..6fcaf4a7c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll
new file mode 100644
index 000000000..e17d20e66
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll.gz
new file mode 100644
index 000000000..666b33824
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll
new file mode 100644
index 000000000..855498126
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll.gz
new file mode 100644
index 000000000..00df6e964
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll
new file mode 100644
index 000000000..f99a72265
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll.gz
new file mode 100644
index 000000000..080684180
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll
new file mode 100644
index 000000000..b624c6445
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll.gz
new file mode 100644
index 000000000..368607d17
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll
new file mode 100644
index 000000000..2d0cdcd24
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll.gz
new file mode 100644
index 000000000..0dfb9aa92
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll
new file mode 100644
index 000000000..65d483147
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz
new file mode 100644
index 000000000..53be14b0e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll
new file mode 100644
index 000000000..f9a600529
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll.gz
new file mode 100644
index 000000000..5c99879ca
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll
new file mode 100644
index 000000000..abba87ef8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll.gz
new file mode 100644
index 000000000..584db3961
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll
new file mode 100644
index 000000000..c569121df
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz
new file mode 100644
index 000000000..e6162bf4a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll
new file mode 100644
index 000000000..bd9d90c12
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll.gz
new file mode 100644
index 000000000..540e2d52a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll
new file mode 100644
index 000000000..6a65d0097
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz
new file mode 100644
index 000000000..6d40cec07
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll
new file mode 100644
index 000000000..984f1e0ab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll.gz
new file mode 100644
index 000000000..86250c0c9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll
new file mode 100644
index 000000000..5c765d66a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll.gz
new file mode 100644
index 000000000..4c44d50e9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll
new file mode 100644
index 000000000..964be0537
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz
new file mode 100644
index 000000000..928cfb1e6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll
new file mode 100644
index 000000000..8f76e4f3c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll.gz
new file mode 100644
index 000000000..c746855bb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll
new file mode 100644
index 000000000..b6f9ceff7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll.gz
new file mode 100644
index 000000000..d55a1041b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll
new file mode 100644
index 000000000..48e48e768
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll.gz
new file mode 100644
index 000000000..762f1e641
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll
new file mode 100644
index 000000000..2591b747f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz
new file mode 100644
index 000000000..cb7fac90b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll
new file mode 100644
index 000000000..da72bdcb8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll.gz
new file mode 100644
index 000000000..e81ea18e8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll
new file mode 100644
index 000000000..cd7f919d4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz
new file mode 100644
index 000000000..d9a7fa4f5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll
new file mode 100644
index 000000000..3e0ed9c58
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll.gz
new file mode 100644
index 000000000..fc1d5cfb6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll
new file mode 100644
index 000000000..d51db885f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz
new file mode 100644
index 000000000..7d775bba1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll
new file mode 100644
index 000000000..8d4088434
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz
new file mode 100644
index 000000000..9d6747165
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll
new file mode 100644
index 000000000..cefda99a2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz
new file mode 100644
index 000000000..284e2f93f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll
new file mode 100644
index 000000000..d90e61ec5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll.gz
new file mode 100644
index 000000000..a1513304e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll
new file mode 100644
index 000000000..0a49975c9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz
new file mode 100644
index 000000000..8db056fd8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll
new file mode 100644
index 000000000..5e3b88f67
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz
new file mode 100644
index 000000000..8550ce916
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll
new file mode 100644
index 000000000..2f3a7ee4c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz
new file mode 100644
index 000000000..488100138
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll
new file mode 100644
index 000000000..807227f01
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz
new file mode 100644
index 000000000..21f943c2b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll
new file mode 100644
index 000000000..559f8ed6f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll.gz
new file mode 100644
index 000000000..26b257f56
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll
new file mode 100644
index 000000000..9d0e4b1fa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll.gz
new file mode 100644
index 000000000..c0ef3a932
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll
new file mode 100644
index 000000000..b99f0a372
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz
new file mode 100644
index 000000000..fc92ffa50
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll
new file mode 100644
index 000000000..9f697424c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll.gz
new file mode 100644
index 000000000..f78891b76
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 000000000..b8b28fe5e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz
new file mode 100644
index 000000000..26dbe540c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll
new file mode 100644
index 000000000..a4c833d07
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz
new file mode 100644
index 000000000..bc919ac15
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll
new file mode 100644
index 000000000..f99ad6475
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz
new file mode 100644
index 000000000..5b53a2a53
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll
new file mode 100644
index 000000000..644253c5a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll.gz
new file mode 100644
index 000000000..5ea184890
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll
new file mode 100644
index 000000000..bd146eaa6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.gz
new file mode 100644
index 000000000..2d3e41382
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll
new file mode 100644
index 000000000..fa0b4c8f3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz
new file mode 100644
index 000000000..b9918d904
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll
new file mode 100644
index 000000000..249823620
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz
new file mode 100644
index 000000000..e9a371ad1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll
new file mode 100644
index 000000000..e2426f378
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz
new file mode 100644
index 000000000..1eee41b39
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll
new file mode 100644
index 000000000..4ed7c6827
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll.gz
new file mode 100644
index 000000000..ae2301f9e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll
new file mode 100644
index 000000000..42f487b3f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz
new file mode 100644
index 000000000..97c6bc6f9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll
new file mode 100644
index 000000000..54937f969
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz
new file mode 100644
index 000000000..3767fd88f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll
new file mode 100644
index 000000000..d3b2a9406
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz
new file mode 100644
index 000000000..cfea19e43
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll
new file mode 100644
index 000000000..b54b64b56
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz
new file mode 100644
index 000000000..90e84afcd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll
new file mode 100644
index 000000000..7f9710637
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz
new file mode 100644
index 000000000..aa6957e6c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll
new file mode 100644
index 000000000..dd519d85a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz
new file mode 100644
index 000000000..62e58d83a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll
new file mode 100644
index 000000000..55c68aaf3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll.gz
new file mode 100644
index 000000000..cc66c1823
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll
new file mode 100644
index 000000000..4c5812573
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll.gz
new file mode 100644
index 000000000..c115463ab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll
new file mode 100644
index 000000000..4b9384d8e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll.gz
new file mode 100644
index 000000000..443e9080c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll
new file mode 100644
index 000000000..ce4aeb6ad
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz
new file mode 100644
index 000000000..165ee98e1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll
new file mode 100644
index 000000000..b8ca049d9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz
new file mode 100644
index 000000000..518e0b994
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll
new file mode 100644
index 000000000..6742fd650
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz
new file mode 100644
index 000000000..e5bad8b3f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll
new file mode 100644
index 000000000..4f6382771
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz
new file mode 100644
index 000000000..dd7be1fdb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll
new file mode 100644
index 000000000..8cea46393
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz
new file mode 100644
index 000000000..8c1d9c111
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll
new file mode 100644
index 000000000..f37ccdcbd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz
new file mode 100644
index 000000000..e4a506e97
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll
new file mode 100644
index 000000000..0dc496dd5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz
new file mode 100644
index 000000000..2e8b77c82
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll
new file mode 100644
index 000000000..e77c70d44
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll.gz
new file mode 100644
index 000000000..61bea88c0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll
new file mode 100644
index 000000000..6123f6044
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz
new file mode 100644
index 000000000..8008eb57c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll
new file mode 100644
index 000000000..1b945981b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll.gz
new file mode 100644
index 000000000..a2fa082a0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll
new file mode 100644
index 000000000..3a582326f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll.gz
new file mode 100644
index 000000000..a5500ecd2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll
new file mode 100644
index 000000000..1a68f36f0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll.gz
new file mode 100644
index 000000000..6a53aa2a2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll
new file mode 100644
index 000000000..f2fe663d5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz
new file mode 100644
index 000000000..032ad3fac
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll
new file mode 100644
index 000000000..2dc92be7e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll.gz
new file mode 100644
index 000000000..b2dcda1b9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll
new file mode 100644
index 000000000..0a24f1455
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz
new file mode 100644
index 000000000..dec4a4c2c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll
new file mode 100644
index 000000000..0d78efac3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz
new file mode 100644
index 000000000..b6ed042e0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll
new file mode 100644
index 000000000..6751cb4db
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll.gz
new file mode 100644
index 000000000..b0e3255ba
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll
new file mode 100644
index 000000000..f6efbe59e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz
new file mode 100644
index 000000000..31bc36798
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll
new file mode 100644
index 000000000..1058490d0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll.gz
new file mode 100644
index 000000000..4c2d1858f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll
new file mode 100644
index 000000000..c2d413df6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz
new file mode 100644
index 000000000..280dfbeed
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll
new file mode 100644
index 000000000..8b3424766
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll.gz
new file mode 100644
index 000000000..0c27c81e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll
new file mode 100644
index 000000000..849f5ce02
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz
new file mode 100644
index 000000000..ee7d4007e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll
new file mode 100644
index 000000000..c7fc5e3df
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz
new file mode 100644
index 000000000..a026cd934
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 000000000..98eeaab42
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz
new file mode 100644
index 000000000..81ebf17d2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll
new file mode 100644
index 000000000..a53e84a9c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz
new file mode 100644
index 000000000..94a6c7c21
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll
new file mode 100644
index 000000000..14c22864c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll.gz
new file mode 100644
index 000000000..35c00acfa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll
new file mode 100644
index 000000000..df035b39f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll.gz
new file mode 100644
index 000000000..540db8533
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll
new file mode 100644
index 000000000..24e2d4d11
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz
new file mode 100644
index 000000000..1e450e10c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll
new file mode 100644
index 000000000..58ba6c067
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll.gz
new file mode 100644
index 000000000..e9d8511ba
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll
new file mode 100644
index 000000000..46f1605e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll.gz
new file mode 100644
index 000000000..f698867ed
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll
new file mode 100644
index 000000000..2bd46dba3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll.gz
new file mode 100644
index 000000000..af517b11c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll
new file mode 100644
index 000000000..befa423e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll.gz
new file mode 100644
index 000000000..2d9cae734
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll
new file mode 100644
index 000000000..024d67a9c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll.gz
new file mode 100644
index 000000000..a42bfd64e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll
new file mode 100644
index 000000000..0d8714c4e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz
new file mode 100644
index 000000000..fa012d2cb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll
new file mode 100644
index 000000000..302f53c43
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll.gz
new file mode 100644
index 000000000..a89006027
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll
new file mode 100644
index 000000000..cc71c5d64
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll.gz
new file mode 100644
index 000000000..5d100fbd2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll
new file mode 100644
index 000000000..6e46cd77a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll.gz
new file mode 100644
index 000000000..c61324393
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll
new file mode 100644
index 000000000..c230b0faf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz
new file mode 100644
index 000000000..019981999
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll
new file mode 100644
index 000000000..21d796994
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll.gz
new file mode 100644
index 000000000..6e0df739d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll
new file mode 100644
index 000000000..da4f85222
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll.gz
new file mode 100644
index 000000000..cbf0c2ce4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll
new file mode 100644
index 000000000..cb5c5218b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz
new file mode 100644
index 000000000..2922cdd72
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll
new file mode 100644
index 000000000..287ee4529
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll.gz
new file mode 100644
index 000000000..054492162
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll
new file mode 100644
index 000000000..e57ad2b93
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz
new file mode 100644
index 000000000..e4ff9ad64
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll
new file mode 100644
index 000000000..e8125f9a8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz
new file mode 100644
index 000000000..aab146f67
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll
new file mode 100644
index 000000000..8f36728e6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll.gz
new file mode 100644
index 000000000..20758339b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll
new file mode 100644
index 000000000..36a371e34
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll.gz
new file mode 100644
index 000000000..d534c3db6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll
new file mode 100644
index 000000000..733ef6e5c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll.gz
new file mode 100644
index 000000000..fd765252d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll
new file mode 100644
index 000000000..cd3dd5174
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll.gz
new file mode 100644
index 000000000..458a44022
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll
new file mode 100644
index 000000000..6047df34c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll.gz
new file mode 100644
index 000000000..a9f747107
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll
new file mode 100644
index 000000000..8b4fe8260
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll.gz
new file mode 100644
index 000000000..15414951e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.boot.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.boot.json
new file mode 100644
index 000000000..6d4766b49
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.boot.json
@@ -0,0 +1,288 @@
+{
+ "cacheBootResources": true,
+ "config": [
+ "appsettings.json"
+ ],
+ "debugBuild": true,
+ "entryAssembly": "GraphSample",
+ "icuDataMode": 0,
+ "linkerEnabled": false,
+ "resources": {
+ "assembly": {
+ "AWSSDK.Core.dll": "sha256-+UpImU00F39wFSt+inE9WLBTUExntLG77AT9xvHPZXI=",
+ "AWSSDK.SecurityToken.dll": "sha256-P3TkEvrhuiq4K1HnQHdk6MNzra8x4cvSdJ1hHfOwlbw=",
+ "Azure.AI.OpenAI.dll": "sha256-T8n0WcKn3Ui\/r0U1+lkkDb7nNxhJe+TkZicE47fwkqg=",
+ "Azure.AI.TextAnalytics.dll": "sha256-zDB4xGMyIDmS4b7XvzWKlrSIk9+PjaKdkUbarRWQlbE=",
+ "Azure.Core.dll": "sha256-fYiFbau5RKj6IKlS+3Et3wUL+65zMsMwJA7d2o32LyI=",
+ "AzureOpenAIClient.Http.dll": "sha256-xEltVWIXqXiSXiC1+yabJK95YziEUJyVrpEx6Vsi6ag=",
+ "Blazored.Modal.dll": "sha256-Sr30UiM7JErBe8hojY6HAgaOOgfQE5zHijI0uVypmkM=",
+ "BlazorInputFile.dll": "sha256-C0KrMmLQQE68cd1+FNwIOW89nNGbOH48hRxQAoSBaaA=",
+ "ChartJSCore.dll": "sha256-gwwJ+\/kjTpw9Y\/nyF36HlnAZNnnaIkf6EcJEKPPdBPI=",
+ "DnsClient.dll": "sha256-pqqUK\/nxzj7PtSwp8HNcVX1ULYXRKP+ym0hhLNYpjsk=",
+ "GrapeCity.Documents.Imaging.dll": "sha256-80s7r7qVGZMWIYX7j1qcPcBV8+4kSrBBd9wY+6W1vUk=",
+ "GrapeCity.Documents.Pdf.dll": "sha256-+wBSnAizmMIfETLKWirKUjdBTc9AoLuV7Bqz3pbbroQ=",
+ "Microsoft.AspNetCore.Authorization.dll": "sha256-\/EkWRHMHBhfvvlx5hLVtXGPm8+Gyp4WkPiKKiiJIrqQ=",
+ "Microsoft.AspNetCore.Components.dll": "sha256-SvjxqyTqc68zPsYivPRkvjKRhUg5zYufzqwGNS83bwg=",
+ "Microsoft.AspNetCore.Components.Authorization.dll": "sha256-41dLN3Fx\/ysI0SP+sKtAMWTZamweRiufJ7JPqZlnXrA=",
+ "Microsoft.AspNetCore.Components.Forms.dll": "sha256-eoQ2CgfBGkvbK4QUMBgFDPIBqJem+g8247Fb3ZmnmCI=",
+ "Microsoft.AspNetCore.Components.Web.dll": "sha256-p3BQFPwUbOgu5j9V+1HlUGwDcVzB7iYNO4dIsDCOAgA=",
+ "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-55+LOYcA1yHHPQEjl6eI0UGgteq41y+8js6DQ5PhXDk=",
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": "sha256-LL+Ypy6kUg17vXDvFlVs7uG4+Ip+QdaY8llF\/DVC0\/c=",
+ "Microsoft.AspNetCore.Metadata.dll": "sha256-eIu14RWCV9bKCAARda4hnWGsOKJfmnGfQpkmeRnSibQ=",
+ "Microsoft.AspNetCore.WebUtilities.dll": "sha256-D5akJeBd7NNITuzAXxlX7zl2jfsc4uTKyeEKwwNhqoo=",
+ "Microsoft.Authentication.WebAssembly.Msal.dll": "sha256-M6I8rpdSyz29AfvhQusE2M7HxP83C6UjlCbXXNBs8m8=",
+ "Microsoft.Bcl.AsyncInterfaces.dll": "sha256-EcDo\/GQZkQrOT1Xd0jMPE3NwT5lsMq5DNsPxHVidLDQ=",
+ "Microsoft.Extensions.Configuration.dll": "sha256-PqQvp77oZ4+uuy2ElXk8AU9I6RfZSf18UGTrd4rulOo=",
+ "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-CnS3b9EMFQmETBUVEgtcron4DBsfFdcVt3zfCP6Uflg=",
+ "Microsoft.Extensions.Configuration.Binder.dll": "sha256-7GY9+7Cm0Z8DJ+JCFwgCx9OfFtUvXlFHaaLlBYmXfIE=",
+ "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-S86mGNxJnkVJ\/qolp6cBN7xwXQ\/YVtHy7QTaPO93AIA=",
+ "Microsoft.Extensions.Configuration.Json.dll": "sha256-k525Vc8hbMpPjxYUYZNPuzJIuy+E1Is2XRTMFbUm1pE=",
+ "Microsoft.Extensions.DependencyInjection.dll": "sha256-\/+vk9BsQP4bCVt1Y6aXakSztSMAli200ER6untxHLBg=",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-jrAm+30mcWoI54hsUTOr+RMOzHIq+zO8ZuRBVrBvCoo=",
+ "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-Zt6OY6gg\/1Tzt9oFOQBkezPvUVkFK4dyM6Pfk+MTUvg=",
+ "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-9xkIbIienaRj9Td2MyWYzL9JmVx6CKbGCPrvJ1Pxfn8=",
+ "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-Gm0yiS5fySh2nZXdCRKZIbASK8sSukwjogLc+a9EBZY=",
+ "Microsoft.Extensions.Hosting.Abstractions.dll": "sha256-2qH9T9HZYBAigHr8n86fpvuaZsvJxdPdCMu5tec6Yjk=",
+ "Microsoft.Extensions.Http.dll": "sha256-QqjUvBFxKOeh8XX3IrmuIesFycYZMmwrhsRakmXvrXE=",
+ "Microsoft.Extensions.Logging.dll": "sha256-WMsuY8rhtg+vvssGFSR7ZLKhqYPAzOi538IXMoiJ6bI=",
+ "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-7zoKnNaWqWOrjF2eX3dFetJL+I03xqvCzORtFB4Ws08=",
+ "Microsoft.Extensions.Options.dll": "sha256-gcHJrSv1wTqvF9SyWTEKcbiShn4mkgfnm9+tRQr4OqY=",
+ "Microsoft.Extensions.Primitives.dll": "sha256-q4ruoDSCjV\/QJY9ZkzV6uxvEvZUVrDbyUjU3SSh5SlE=",
+ "Microsoft.Fast.Components.FluentUI.dll": "sha256-AM1swc0MWdQ008cWgP+\/qCGig6NCRCrj1UXWjhagH9k=",
+ "Microsoft.Graph.dll": "sha256-wHZisTU+lZHXIer25uRzCZzi1hBfV+H+31hgufwDzjg=",
+ "Microsoft.Graph.Beta.dll": "sha256-+22Gw67R9cVPo+yuDFgQ\/qvZP78moYdwW8th\/jg7Fww=",
+ "Microsoft.Graph.Core.dll": "sha256-ZgEqSt26LKpR2dQvVePfrvl\/upLdZBbiwmyI7TXFG\/Y=",
+ "Microsoft.IdentityModel.Abstractions.dll": "sha256-t7s0MJysE09CjR6Ug7LeooxWh6qQMvyP0BaK6owTg0A=",
+ "Microsoft.IdentityModel.JsonWebTokens.dll": "sha256-iOQnepr\/E4XN7m3ZPaRCHm1AkIN0fbzv9kaqAPxC0NY=",
+ "Microsoft.IdentityModel.Logging.dll": "sha256-R8PwspOBOtylLlhwJijr6JDM83WXCNuxcSLNOYkugEM=",
+ "Microsoft.IdentityModel.Protocols.dll": "sha256-Chqk48UY0+W2WrYmkz0CXA+b1jKiosBuYOrMCsPiOtQ=",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": "sha256-WbnzvZq\/XQo1B5Z+1oKyjUxQ2aqNqeDyISq0xBaHxPc=",
+ "Microsoft.IdentityModel.Tokens.dll": "sha256-Wiph8o+JeePw4GkloTJqWzogne17szvkhrjInJkpAdQ=",
+ "Microsoft.JSInterop.dll": "sha256-OBt2YgODs1L5bJWrDjUFgcgGMUjDfmFTHCt9t69RxgU=",
+ "Microsoft.JSInterop.WebAssembly.dll": "sha256-GH0zLXwtZcak53A9656ZndP15W57wd1W0kLvKDIV+VE=",
+ "Microsoft.Kiota.Abstractions.dll": "sha256-XGyjS3FRRc3OQqr3wtmkCnagPvoljDLNV0Z4WxcpbkM=",
+ "Microsoft.Kiota.Authentication.Azure.dll": "sha256-jU5eYEFKzWgF7OWOYsJM5bEb5t8WrkBM8p7VuBv00wQ=",
+ "Microsoft.Kiota.Http.HttpClientLibrary.dll": "sha256-WKXOvKFrqRLnVjp\/gA0oc9l0OB8U+iN+mXdj2LeUFvM=",
+ "Microsoft.Kiota.Serialization.Form.dll": "sha256-6\/jk5AJnQJGNuouF52mvjJP6n6s+1opHZ0uBKONN5m8=",
+ "Microsoft.Kiota.Serialization.Json.dll": "sha256-CcAEXSbIJlpoe\/hF0X8VOuZSMLtEhdLf30ok3hWwBrQ=",
+ "Microsoft.Kiota.Serialization.Text.dll": "sha256-U9o18GdkXSXvCj1ptHww8sQL4nH8ED8iZIfX4C5iKpw=",
+ "Microsoft.Net.Http.Headers.dll": "sha256-P66ftDrXwc6ayND8uYzIk0CPQy1GjNZAPHx9RMhi3V4=",
+ "MongoDB.Bson.dll": "sha256-d3ZsdGnCH++KHoY26Z19JA1IxR9hFKWE59VDS0pGDmc=",
+ "MongoDB.Driver.dll": "sha256-XZXhge+o5qeM5xgV6lhHanVvNQKpth\/b0zhHSHVR\/kE=",
+ "MongoDB.Driver.Core.dll": "sha256-qqEfR0SnPkzUV0zmanIDmi2anLp1SyKhDFevWf2ambM=",
+ "MongoDB.Libmongocrypt.dll": "sha256-0IcHuoTqrHG0vWBoQq6+HxI2BSDMkAGnVwN64V5vGS8=",
+ "Newtonsoft.Json.dll": "sha256-IsZJ91\/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
+ "DocumentFormat.OpenXml.dll": "sha256-BDrsmnS\/9JzpRWDRRNJPdsQHMhnkIlMfqffKn0I9T4c=",
+ "BouncyCastle.Crypto.dll": "sha256-n7KC+76rIikEfNEJ10mSwNXh+MMbda\/f4FD9fZ8WIw4=",
+ "SharpCompress.dll": "sha256-g6OkB2E3tHVhjYz074TwY\/qKeHk14HgEWYjivSizy68=",
+ "Snappier.dll": "sha256-7+iUMbT8Ae8amaAJEgiQ8U\/p6OQqf5zp4oy2zEDxxis=",
+ "System.IdentityModel.Tokens.Jwt.dll": "sha256-mMRs4CYO0tK9iswmp2AS47Dfo8riHqMoxPkTdczonTw=",
+ "System.IO.Packaging.dll": "sha256-1NYPxd\/Znog+W3dejVSmi57hLM8eGX\/c6SIZBh\/dDRM=",
+ "System.IO.Pipelines.dll": "sha256-P\/MqD0fCBd5bgTM16JC1QC\/Zz7s+CwViyzmDFkBG4\/c=",
+ "System.Memory.Data.dll": "sha256-KTyl2GNY+yzgDaAsY+78s0Ron8DGNrYcl8PxsVqAqlE=",
+ "Tavis.UriTemplates.dll": "sha256-esSAQepI47ZEvrdjJKDUIkP\/+Zp\/gW65TN\/HizEItqs=",
+ "TimeZoneConverter.dll": "sha256-+\/jS+apdJFwJrSAk5mtpMJCNbqpKHyYTarXy\/5sfylU=",
+ "ZstdSharp.dll": "sha256-VKZX+de4WCoEsOirOWgSviiKvr0Z3Ujd2\/PpLOUPOaE=",
+ "Microsoft.CSharp.dll": "sha256-6Y1rN8knL1K5x5lsZ2tEVDND2h4LtDSuVgCg1N8ghkA=",
+ "Microsoft.VisualBasic.Core.dll": "sha256-LRJ4hN7opopr3bsogxcz7uyVjh4bNZOdMbVbIIQ9z+8=",
+ "Microsoft.VisualBasic.dll": "sha256-xkUVMleH\/xQU+9disGUzBr7fT6ckmem5\/CMscxtghD8=",
+ "Microsoft.Win32.Primitives.dll": "sha256-lucJz4+wGO1ZdiEthwNGGIOUtcRUsVVabMVW1gtQIMQ=",
+ "Microsoft.Win32.Registry.dll": "sha256-WGxv3PzEfgVp3usrYhy+MBHjJfAjodWNBQU6wbPwnis=",
+ "System.AppContext.dll": "sha256-7TWcUhjRPqzWr21Y2gCSBaAFyJxlc7z4owojtSWcSVI=",
+ "System.Buffers.dll": "sha256-D+pqpCCHBkmhRKEaV+INC98dHtA1JDcg9mWqL9Ond0Q=",
+ "System.Collections.Concurrent.dll": "sha256-2K\/WsDXzSv\/zr47al4KrDWT2OBs9l06gKahr5K9mwss=",
+ "System.Collections.Immutable.dll": "sha256-0brR0tAZlQr4KM97EMlVlNiHVDhE0EWIrE2q\/utNnY0=",
+ "System.Collections.NonGeneric.dll": "sha256-1PceS1QJJyR9TkHlfvUQEKGhsJ4xj5nKczaq5JM+kfs=",
+ "System.Collections.Specialized.dll": "sha256-fQn5UDuKsKLJLFM5oP7tV6c\/nsg4sCmcCQGD2cdOjD0=",
+ "System.Collections.dll": "sha256-vwimVkB+WktlZk8jST2HzG11jBQBcYI4g1uOR32VhRA=",
+ "System.ComponentModel.Annotations.dll": "sha256-NUD59NxxFo6ElXR4KdKYGRMeUflEmDlgpU0mZmr0JRA=",
+ "System.ComponentModel.DataAnnotations.dll": "sha256-LxLw+D49jEOMTd2EIBY2ah\/K9LEDEqJapMrBWvzrSWs=",
+ "System.ComponentModel.EventBasedAsync.dll": "sha256-2ba\/XMMymeP8SwHaOiMtpLLNw45+nA8iisGDHtzuW2s=",
+ "System.ComponentModel.Primitives.dll": "sha256-ra+S6YBscBNuGQRHqRBsFXMnn5Hf2LIrbJs7frsvXHA=",
+ "System.ComponentModel.TypeConverter.dll": "sha256-86xoWr1\/foKgp89NdwW\/sIJMnh8X6GQeQtGi2td+4OY=",
+ "System.ComponentModel.dll": "sha256-2u5p0jWnx5eMfQRr3n+YLoFjDFRwJf3KxghICbBP83Y=",
+ "System.Configuration.dll": "sha256-DxBo7aXEaQN\/RMTeWVrXeltU+jlTxKIE0MSxtgriBRY=",
+ "System.Console.dll": "sha256-x2R8PrlSUDcIcYa3wiFOYDo3WBJ6frGB5YdVeOu\/mh4=",
+ "System.Core.dll": "sha256-QU6Zi\/m0odpCw\/jmhvgflrMcgvcMjz0Qek35MPVcNCw=",
+ "System.Data.Common.dll": "sha256-qjkLUwub36Jnil+Mkt\/3NAy7MBFeI2YH8SLtZWKvGo0=",
+ "System.Data.DataSetExtensions.dll": "sha256-p+kFZC3MLQ8R42IjhsUwJakKUqkKM+a6uClvAsxwwOc=",
+ "System.Data.dll": "sha256-m+19eTWjPykLqlDe\/yQstXNXfewpumOqK0vaHZ0WRag=",
+ "System.Diagnostics.Contracts.dll": "sha256-dqfKcpJQauvOtAVBZlH9vZFg7TnQ7un3FGTjcG9hesM=",
+ "System.Diagnostics.Debug.dll": "sha256-1yhwgAHYEOsTk1ZE25o\/b8xrtdKZtuJnMBbHeebkfpA=",
+ "System.Diagnostics.DiagnosticSource.dll": "sha256-YP8hvCIj64eqULMIDKyhebV2s0TSA0lLKMmjXeJTb1I=",
+ "System.Diagnostics.FileVersionInfo.dll": "sha256-xLvNpGzQci45dyRBJq+FKc8WzHHrmf6VJ9kl5mvK4HI=",
+ "System.Diagnostics.Process.dll": "sha256-6MAKEKQinIE70XtsueWEgJ7oWQY4KKqWFsgs7DUsz5c=",
+ "System.Diagnostics.StackTrace.dll": "sha256-N1kt4OLEBIEt+JSmX5xQ25kxPJCsVbxvHK3xGIpzI2w=",
+ "System.Diagnostics.TextWriterTraceListener.dll": "sha256-hiTBz1YtFh+hXOMCVkXK1WgRZgUXbi1pesRRJ8l0A4A=",
+ "System.Diagnostics.Tools.dll": "sha256-Oc430NOwzVts7ZlS9ZOkLOgb5JdaXL\/qYoC3BVkrMFA=",
+ "System.Diagnostics.TraceSource.dll": "sha256-XA6qOo442+eAO6UnYehnVhpbs5DIrpUDeW1HlFPpXPE=",
+ "System.Diagnostics.Tracing.dll": "sha256-vWC30ViFKVvfA6lr4WpENnHARX4j2ur\/mHthwaKoATs=",
+ "System.Drawing.Primitives.dll": "sha256-BJy91Y2qFeK2inFNUFA\/5mJSMwdbm\/grKthhaO35NAI=",
+ "System.Drawing.dll": "sha256-Dt6ZUiquxwt73K0SwRxN9inXL9\/iBxGUSAssD2ZTsUg=",
+ "System.Dynamic.Runtime.dll": "sha256-A\/UdQgEr6UkQp0Zvy0ySsIVJvHuuCreyMGJi8e9NaMQ=",
+ "System.Formats.Asn1.dll": "sha256-P2vkee5dVn7oBeVQcsQwIXxYCQtVC5bnF3WIEh4Ex1w=",
+ "System.Formats.Tar.dll": "sha256-BghbZNz2l8GKkA8sbyBrvgZ\/1B0nJnS9jw1+9E5o4O8=",
+ "System.Globalization.Calendars.dll": "sha256-pALRgo1jB\/83My1cUtomrU4xdi34uIYdgWmJgSCR6po=",
+ "System.Globalization.Extensions.dll": "sha256-RffLgs1y7ZU19dsAW2hE0jwWT05QOSG4t+vwJxPOc1s=",
+ "System.Globalization.dll": "sha256-afrKKJTWfb1nxIBkRZi1Z560z7EHloRwO+KVyUVDzm4=",
+ "System.IO.Compression.Brotli.dll": "sha256-3jJVep1ZzHjUQPl6FMbiTvY4REKUCRclCCz1B3EB8Eg=",
+ "System.IO.Compression.FileSystem.dll": "sha256-VHqyfA\/xMKfCo714OvSrHJFJhOCTqkC3ERXm9W\/tQ7g=",
+ "System.IO.Compression.ZipFile.dll": "sha256-EaLFLzEig0YZOMmzwRhqdrmRsPjnura5sP+kIxrqpWc=",
+ "System.IO.Compression.dll": "sha256-eaSXrmsjLkjjY4kbxJWbwUloAU5j8g6PJyivblsNfww=",
+ "System.IO.FileSystem.AccessControl.dll": "sha256-a4HeIPUfXQvmb\/FlJsuBADEVP2ho6KQP76yENfuwxgc=",
+ "System.IO.FileSystem.DriveInfo.dll": "sha256-28iVzkA1XXuMlAF+voPShSwc7Dfb6RWat8w7UQrONIk=",
+ "System.IO.FileSystem.Primitives.dll": "sha256-+V\/Ar9S1GDkRmIEMFbydoyaonEcNtnjbcDCJk75zq8k=",
+ "System.IO.FileSystem.Watcher.dll": "sha256-s59BnWfcVMtsSayxP+JOhtd\/3yPT1SdkgNS8+y6htNo=",
+ "System.IO.FileSystem.dll": "sha256-gTTqQtC8gN0WRvXc1d2w13eDZTrbzIka0PQi3rPTTtE=",
+ "System.IO.IsolatedStorage.dll": "sha256-kE9wiBqkMoKnSNzZNmMkxGJrilJanBc9KfElZ1XwI3w=",
+ "System.IO.MemoryMappedFiles.dll": "sha256-HdDDMErSSsu+1IGXGrlpoAnVLwkRuWQQSmZPHbQKddI=",
+ "System.IO.Pipes.AccessControl.dll": "sha256-4uOuCBbwKHU0KekAiOQL1vlXj0LuORa+YNFf2DUKRpY=",
+ "System.IO.Pipes.dll": "sha256-k6JSQ9EoXOG\/Xt0ER9E4PwRa7IR\/AmJOoDcmHDQVf0g=",
+ "System.IO.UnmanagedMemoryStream.dll": "sha256-\/r0qrwbyFVcp09GZFLCBdnNBqGaNsg9dMqSpa52M7hE=",
+ "System.IO.dll": "sha256-vo7HL66JDROb6LCcXiLOInexsARgGyz701SOeGaocRc=",
+ "System.Linq.Expressions.dll": "sha256-AL\/cPJ36gyGw550gx1XbozxiGoAazGT2AoHXh7lxInM=",
+ "System.Linq.Parallel.dll": "sha256-oUO3Yz2pz9q6qrloWbxlBfCGe1AIXe1bO+8stkCZLFk=",
+ "System.Linq.Queryable.dll": "sha256-uLVZt+s7IYTq\/bJE8yFSthB5IsYBlPTKDk6TD3gibRA=",
+ "System.Linq.dll": "sha256-EXO1Eh2R1Txuipg3tHui\/Pqdl8l2gP4ZUYG3HVz5sKw=",
+ "System.Memory.dll": "sha256-W\/fRA8tiM6Xfvcphi6d57EdsMCcXbjTT4+UipHxZFq0=",
+ "System.Net.Http.Json.dll": "sha256-uPFK0nYPyNcalouETAhKv\/8l5cpJoKewEkH3SfCWjdc=",
+ "System.Net.Http.dll": "sha256-7pFAvBOTQxmKE\/Hx4y9CSTkXCj1NUkgaELyLPCpIw7M=",
+ "System.Net.HttpListener.dll": "sha256-1yh5nM+KHYQfjBIRnjw\/zm11xGCMDkW5X6xPbM4OK0M=",
+ "System.Net.Mail.dll": "sha256-Ees0GKEtYLtvcFaF4Mg7SrGmE6ntuARPJ3ctH7tnGyM=",
+ "System.Net.NameResolution.dll": "sha256-qNFVdZU8IlnT\/7Kydk2f5EeLEK43LPd5b\/3Tp8zTNjc=",
+ "System.Net.NetworkInformation.dll": "sha256-fnOoKrwcDOfqeRz4iups+eBqX\/CcgzYP8wSH3fs9cAw=",
+ "System.Net.Ping.dll": "sha256-rdnWnaqbwdek9cziz3YqU1I2HGbLitw3Yje5EnOfFZ0=",
+ "System.Net.Primitives.dll": "sha256-EZKPs84TovM60o7haxAMRR4PpXvQ586AoFeTUyb+e+Y=",
+ "System.Net.Quic.dll": "sha256-x3Fcp0ZpTn3s3A6RnexallUHcdT\/QyJRr0rwWNsB6s0=",
+ "System.Net.Requests.dll": "sha256-6lhVGYKf14zgrvx9spx9F65qFC7\/4dh23BHlRXWYAUM=",
+ "System.Net.Security.dll": "sha256-KahC\/cXzZqMT0F8cSEhY8lAoQjx218DicZ6fqjX5MyM=",
+ "System.Net.ServicePoint.dll": "sha256-yQi5HnnAAW3RYMxj4i0imy9EgP0ymv387JN\/i0tI98I=",
+ "System.Net.Sockets.dll": "sha256-8tCW4TMl1DDY1+sE99pGR0V7XOulRRd7AyhHLtT9e68=",
+ "System.Net.WebClient.dll": "sha256-6eW0V\/divz3WqpuQ38ivS\/EmJhjS9C9AeiM61oG+g1s=",
+ "System.Net.WebHeaderCollection.dll": "sha256-LAjBAyQsRUceRBXEmSd+VHWSWMhErrnMHwki\/x\/oUIQ=",
+ "System.Net.WebProxy.dll": "sha256-75hxZ+dw4YSJ6Odi+xmOUOK2v4KrWhTAakLdPUF4Jvg=",
+ "System.Net.WebSockets.Client.dll": "sha256-4A4eNfhKtqO22nPCE9gcCXBm+I16t5HodflV6JaqKfk=",
+ "System.Net.WebSockets.dll": "sha256-TMqLCEDpgG8LQvp6czXjbPCAHZ\/zSnxS7dmg0+Kpk4A=",
+ "System.Net.dll": "sha256-UmS\/aFJ1ge+t8hjDME17LrMrYKWlxzhyMXP8Do1rv9Y=",
+ "System.Numerics.Vectors.dll": "sha256-sfckNKDNCQrtLJC6UeN6k\/0jIM2T9BPzmmkC6xATRH8=",
+ "System.Numerics.dll": "sha256-+LmwPV2ZHT4i9u4WiO4BxSIec1FtrSIfxII7CVFizoA=",
+ "System.ObjectModel.dll": "sha256-x3o9lRJAWfBFD1WaseStgK30v3wVgiXgYR4DbL+H6s0=",
+ "System.Private.DataContractSerialization.dll": "sha256-QDskUjBYm03oolPQOQBFKFX4VCEbS0Bkd2DGO1bA0QU=",
+ "System.Private.Uri.dll": "sha256-lmmUVB4nvy09yB6IS\/A7ZdZ2C\/RyBnXf89xw2oWnDEM=",
+ "System.Private.Xml.Linq.dll": "sha256-Y7iQofVvArZGVmxpi2\/3D12FFW7dKxvftELb+OfMgI0=",
+ "System.Private.Xml.dll": "sha256-77UDSVB0hR8MCc9zzl3UJ7wxLh4kJoW2NuLrl2UhFTc=",
+ "System.Reflection.DispatchProxy.dll": "sha256-o54HxPqaDaOCrPXoWr3erljuUSZfS8OuRL+rsjx9PhI=",
+ "System.Reflection.Emit.ILGeneration.dll": "sha256-+8QK1ENgwjIIwXPFNXphrJKgGEEDhQK3WKVR3TYgS4Y=",
+ "System.Reflection.Emit.Lightweight.dll": "sha256-joIP68O8gIgVdQm7Fc7oWHhzXQk3t5cLgiiqop4YnNE=",
+ "System.Reflection.Emit.dll": "sha256-bf6mi\/QcTQVXipMxeU4z7e0dhmnzYnvp373Gac0S4xQ=",
+ "System.Reflection.Extensions.dll": "sha256-kJQJn9zh\/R8ad1HKxsnBf5TvyAcmDMNqCW2RqrSGhKI=",
+ "System.Reflection.Metadata.dll": "sha256-VmrPNFdw1UT+8IpCC7Whm\/jO8Ys75dpNHmYDwcd4tbc=",
+ "System.Reflection.Primitives.dll": "sha256-PUj2dTxker7Y0IrwEWRPzBVHBFfDQqP75lZ\/QcZ6XTo=",
+ "System.Reflection.TypeExtensions.dll": "sha256-OzuXdBaFnwmLsmtdXI\/drJv\/IIB7eABZAxDRitqqdhI=",
+ "System.Reflection.dll": "sha256-pljq5DnINJtH9bxdRXiDTyEBpJfwM1kj7yyEXjDQAqI=",
+ "System.Resources.Reader.dll": "sha256-\/pIxvJS4987MdCAuDU73oFCYj5zf4hJF90O8YBTNfHs=",
+ "System.Resources.ResourceManager.dll": "sha256-6yWD01YDvrUD1u47NYFvtdgKzRTQaGe37HQr8yQuuWU=",
+ "System.Resources.Writer.dll": "sha256-a37W4sVXcaG2gp\/GH3\/y9bbsjE4t3a\/rzemAfw09x4c=",
+ "System.Runtime.CompilerServices.Unsafe.dll": "sha256-Jer49wJrlVXBDylDpm4PJd3hABEhgUbjOJOUPPSFuds=",
+ "System.Runtime.CompilerServices.VisualC.dll": "sha256-S1ocTp356bytLRBiSYfUaP0\/rLFgL6zYoUlx42Ni+Ng=",
+ "System.Runtime.Extensions.dll": "sha256-cwPH9ZR05wn4zQSOpAzU6e0MRWUqlluljO\/\/KdUxFaQ=",
+ "System.Runtime.Handles.dll": "sha256-9gWv0Ah4Mhfc3p1OO7s1LyvkTCft+XUqkeZbGSsGP+E=",
+ "System.Runtime.InteropServices.JavaScript.dll": "sha256-Ika9jD1bp92C5JyRGWWAq8I30pX3+zHKfZH\/cGp0Wsk=",
+ "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-a56lo8SHC7lLQOyqmwdTIAxqcilLbdbxyLzygm+HS9o=",
+ "System.Runtime.InteropServices.dll": "sha256-I8JRWjqH9yGKfQ\/u8fGTBGL5R+p4t\/BTwCPtaVP5NNA=",
+ "System.Runtime.Intrinsics.dll": "sha256-s7ED6CqU5sqiriNPCBRyGad4J3mmP5cSLNBrPkf5YLU=",
+ "System.Runtime.Loader.dll": "sha256-7\/VXqrJyz6w7P0XjMWQQc644qmeGLJBJ8rOtPmenAg8=",
+ "System.Runtime.Numerics.dll": "sha256-CIuKFDtuWc\/+pxGCKWM2iT6vBSko4Xee+fcS5lPLkxM=",
+ "System.Runtime.Serialization.Formatters.dll": "sha256-bOjX9cfmsSsWnVBCpfu40b9+5H1PeQookq9J4dZ1tho=",
+ "System.Runtime.Serialization.Json.dll": "sha256-W1LFtjaMFDPf412OPRn7FqrtKP\/ZtR6zTwxLq8BnFg4=",
+ "System.Runtime.Serialization.Primitives.dll": "sha256-EVnHo6YYTpM1jEhqrKouL92pk98n7aOc6TJ+zUgGoAQ=",
+ "System.Runtime.Serialization.Xml.dll": "sha256-Aw6KX9j+5mx6HUHtImtB7LFROCxHSpbowylTBSCO8UA=",
+ "System.Runtime.Serialization.dll": "sha256-ieCoS99bFo3vtWCdlz80SbUJcApHTVmuZEGdAWGrrh8=",
+ "System.Runtime.dll": "sha256-HAhQeNzYHs9HyyBhTO\/EX1iU7YEKwoEnGx9X2LW4Vys=",
+ "System.Security.AccessControl.dll": "sha256-wOcRpFZ1XG5Yu+jPfiIX+RuWbM45zPT4jdMvA0jKtS8=",
+ "System.Security.Claims.dll": "sha256-obeNM8MiV3pV+71JCjOfWdKz7KvqDHVwYdxsbkL4QtU=",
+ "System.Security.Cryptography.Algorithms.dll": "sha256-KOR32YaPNGRa1Mx5GUAJocI4d7ILc0hNsR85s\/qHnz4=",
+ "System.Security.Cryptography.Cng.dll": "sha256-6GIzL6b8w8nBC\/0HGW67+ZdLl14KIzyJ3xnobSRCNtA=",
+ "System.Security.Cryptography.Csp.dll": "sha256-I6UTSqzotpguxLa6Mky\/CVlRoXaWA\/VGUnSa+fWfooE=",
+ "System.Security.Cryptography.Encoding.dll": "sha256-LFkdeimY8XYu5oM8lPftNn0EXjp77SYb0P9zAZ8i7JA=",
+ "System.Security.Cryptography.OpenSsl.dll": "sha256-pWMejSIyXuj6utObjjdaQYXHIJjkRyGhLs6ATNHzcCo=",
+ "System.Security.Cryptography.Primitives.dll": "sha256-6U9tVMS2AcRCVL7OsIB\/vClW5whwaSdwEkh3fMDN3fs=",
+ "System.Security.Cryptography.X509Certificates.dll": "sha256-GDvp0VwTbHYenh\/m7rQPMrh9R+w8\/ErOGci9kB9eDT4=",
+ "System.Security.Cryptography.dll": "sha256-dfovi0zCN3b5w3JBB6TP46bY1uC1oHy9B8wJxbYGAg4=",
+ "System.Security.Principal.Windows.dll": "sha256-d9f5+NQ4CskBA9qzwyV2GqSBslI7bRiXpGFSyPsEtVA=",
+ "System.Security.Principal.dll": "sha256-tVd55g5lNCTyam9JPEK13OlS2yCEG3+T68EERM3kqdg=",
+ "System.Security.SecureString.dll": "sha256-FAMqTDxIU0C3qGYFWBt6ZWujHGbpxzlYyGYeTfEZV7Q=",
+ "System.Security.dll": "sha256-9A1V+ITVbr0NJRyCxe+LzMHMnEUIiXRvS\/xXOSTKGDk=",
+ "System.ServiceModel.Web.dll": "sha256-7Hga+jap642rxVSYqG0\/GkTEmThGIlCzjjOvnkmnYRk=",
+ "System.ServiceProcess.dll": "sha256-nkLSRcQnaVp6gmYJxHwIfE+XjP2xOtanHFtYrj\/dIKo=",
+ "System.Text.Encoding.CodePages.dll": "sha256-7nAeOeAzxcaxc1CV7GLjLnlx6h0UyDe20lqOzmDgxFc=",
+ "System.Text.Encoding.Extensions.dll": "sha256-YPIlEpZ\/zKt3dzziZZKMLJLsECFJk0t9IHTOeJ1FNOo=",
+ "System.Text.Encoding.dll": "sha256-owgV8aZQzl0xLGBKto5qKnkQ+Jj3F97\/ewkxwoLhMVQ=",
+ "System.Text.Encodings.Web.dll": "sha256-WSjAnnOLfsXb33Twp35Ctsue8egrDWoLlNbMksiD4TI=",
+ "System.Text.Json.dll": "sha256-TnU5Ig0\/qKHRvdSNay7ugpKPaL3ahpQIyi37OSjlicM=",
+ "System.Text.RegularExpressions.dll": "sha256-N18f3LMYVaBB24DGtoJ+rzMgpkgTa3QFTuaJoC8pdDY=",
+ "System.Threading.Channels.dll": "sha256-s9dNZ8+KoW57Lmi+fP8zWYJqeRutSSu6z+kYdDjAu\/8=",
+ "System.Threading.Overlapped.dll": "sha256-37EfT1YZLtLB+Ez1m3MFz3kc2Z0XjO1nORyda+XDG1Q=",
+ "System.Threading.Tasks.Dataflow.dll": "sha256-qAOwJdRifT1gadnHfuv\/jB1mr\/lP4JLFSmsiFovDOYA=",
+ "System.Threading.Tasks.Extensions.dll": "sha256-nxEfwHtQFKoMl8lp5ikMB4+lpJ8QiGBy9xzjgnsMkNQ=",
+ "System.Threading.Tasks.Parallel.dll": "sha256-nSJC8IgDpcjauatJbybVvkgF4sc3Syg1K5Zh4YSAVjQ=",
+ "System.Threading.Tasks.dll": "sha256-G1nQ5\/Red3cs0DirxW682VCJ\/a1grb37qm1BVmts\/Nw=",
+ "System.Threading.Thread.dll": "sha256-fpg4DXuKPwTsiP\/poP4vgWCNimPuPLklzUIj1ODu5nU=",
+ "System.Threading.ThreadPool.dll": "sha256-67ZcL3XG5iZ2czqpw401ix2vn\/2RJE1OPPqATV+S5ZI=",
+ "System.Threading.Timer.dll": "sha256-261A8pkSF3pvGIrn6H7m02T1\/JsuwBgTAu8zpvEErqc=",
+ "System.Threading.dll": "sha256-xjtYe\/42JgagDKF8Xv3EhJl40NTziwx\/VwPE9y4ELH0=",
+ "System.Transactions.Local.dll": "sha256-rU4mTr82aHMgYBL70OO6U0TcL810LJwRUHljdC\/KC5Q=",
+ "System.Transactions.dll": "sha256-Fl36SVhASzk\/VsI8X80DrpDdLiKprXmcNRZ9dqHXOjk=",
+ "System.ValueTuple.dll": "sha256-eI9Gd7DfoOKMKcUvrUyBOYX\/1X+qoGlfLWGyov7CEoE=",
+ "System.Web.HttpUtility.dll": "sha256-t8YxFRjw08+4q36f9nLIRFiiczlca2RkfmzGYmGLIKI=",
+ "System.Web.dll": "sha256-xtj5BTZeF8uInYXYVlyZoxCO+4T5WOGwk7w+e6DLbsY=",
+ "System.Windows.dll": "sha256-DNjkNCF7j27CNyxBcGIrMuwL0ydDOMeRtUX4CE0Xt5E=",
+ "System.Xml.Linq.dll": "sha256-NhHAGnAlayjfbMQPRrTCkjckaz\/69co8poQmnLYnKOA=",
+ "System.Xml.ReaderWriter.dll": "sha256-f6p5YWzc3e2Vg606gUu50uHyviOtOgq7PzobmDgl8Kc=",
+ "System.Xml.Serialization.dll": "sha256-3XE2YVQZgqUZ2eYnIoNnkMq5bGl2XlblQrpOJlxnT4w=",
+ "System.Xml.XDocument.dll": "sha256-NO\/P\/T+7TPRsmjK9JCul9xqWcK8Qvdaz52cnzmclBQE=",
+ "System.Xml.XPath.XDocument.dll": "sha256-G43aXAhY6bZCObx3e\/T4Wf\/OvC1yO14GIhbmpz38hn4=",
+ "System.Xml.XPath.dll": "sha256-76s7J3orfX5VlcarhdfOV\/05St84NlfvGDul\/SaHe7s=",
+ "System.Xml.XmlDocument.dll": "sha256-eAWu9IQu2iunp\/SsP+1Wu\/bigY2zxV9JcNtdJagthu8=",
+ "System.Xml.XmlSerializer.dll": "sha256-8qnJDsE4pVWkhcfAoPGMsrgty96NOfCOAs+4swI4LPY=",
+ "System.Xml.dll": "sha256-ZrdEXfsh4gCVWAiAq038hgrsqQibCYHMFIpRW90jTlo=",
+ "System.dll": "sha256-cbk1\/4P+UvDk13iCw85zs2\/lR1S+nDR3mY60kAr\/cds=",
+ "WindowsBase.dll": "sha256-SgDw2itoVCJKQ9AGrgAuRDPOFrMUYvGZeeDXCm6eC1M=",
+ "mscorlib.dll": "sha256-qqpKd+W+AFb6UxudEYEKzrz7ma81p5LrWUwPBVvHV4U=",
+ "netstandard.dll": "sha256-OYYuPT3JUknj4LdYIa58zF7kDB3tCnLzjCSuhEjtKXM=",
+ "System.Private.CoreLib.dll": "sha256-EVS7zPxPV\/41g2mzPwdXtwiigWxI\/SeAHme1IgyD6tc=",
+ "SharedModels.dll": "sha256-b7WnF9tfopuJPf40TdpJMnoJRH6lZznx6H3yxJ7HH2Y=",
+ "GraphSample.dll": "sha256-dx0LNynAwY0HDteN3GhmnbQmYBcF4HANyYX1aNlf73k="
+ },
+ "extensions": null,
+ "lazyAssembly": null,
+ "libraryInitializers": {
+ "_content\/Microsoft.Fast.Components.FluentUI\/Microsoft.Fast.Components.FluentUI.lib.module.js": "sha256-ND1vLicPyknaz63eR1\/+a5vJIKrL2EX3xYqzR4e0S70="
+ },
+ "pdb": {
+ "SharedModels.pdb": "sha256-OhgUc7L3fu2touKGcGpX\/t\/ASF0lyDUGt\/H8bpJpu1g=",
+ "GraphSample.pdb": "sha256-GuGgC3nqjDaa111cO1\/HaRve97yXLMSDyfsaL1PHnTg="
+ },
+ "runtime": {
+ "dotnet.7.0.5.9her4wdnhl.js": "sha256-codB25EodaFEP43MDCfMBuKXU4LqurUKnQrpoMIFnPs=",
+ "dotnet.timezones.blat": "sha256-rIVQOJ+gHn4DeRSq6Ac3CURS8YBJG3P4CtYPfIuZ\/kk=",
+ "dotnet.wasm": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o=",
+ "icudt.dat": "sha256-tO5O5YzMTVSaKBboxAqezOQL9ewmupzV2JrB5Rkc8a4=",
+ "icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
+ "icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
+ "icudt_no_CJK.dat": "sha256-L7sV7NEYP37\/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
+ },
+ "runtimeAssets": {
+ "dotnet.wasm": {
+ "behavior": "dotnetwasm",
+ "hash": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o="
+ }
+ },
+ "satelliteResources": {
+ "ja": {
+ "ja\/GrapeCity.Documents.Imaging.resources.dll": "sha256-KtoftVc29pGvHmYM82mOXOpk5+CBsiAvU6Rk8Yiu42c=",
+ "ja\/GrapeCity.Documents.Pdf.resources.dll": "sha256-6X2vLz48j72uR53HIHdDfjwonFxDkuuVjPm\/8+Xt1a8="
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js
new file mode 100644
index 000000000..3262acbb9
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js
@@ -0,0 +1 @@
+(()=>{"use strict";var e,t,n;!function(e){window.DotNet=e;const t=[],n=new Map,r=new Map,o="__jsObjectId",s="__byte[]";class a{constructor(e){this._jsObject=e,this._cachedFunctions=new Map}findFunction(e){const t=this._cachedFunctions.get(e);if(t)return t;let n,r=this._jsObject;if(e.split(".").forEach((t=>{if(!(t in r))throw new Error(`Could not find '${e}' ('${t}' was undefined).`);n=r,r=r[t]})),r instanceof Function)return r=r.bind(n),this._cachedFunctions.set(e,r),r;throw new Error(`The value '${e}' is not a function.`)}getWrappedObject(){return this._jsObject}}const i={},c={0:new a(window)};c[0]._cachedFunctions.set("import",(e=>("string"==typeof e&&e.startsWith("./")&&(e=document.baseURI+e.substr(2)),import(e))));let l,u=1,d=1,f=null;function m(e){t.push(e)}function h(e){if(e&&"object"==typeof e){c[d]=new a(e);const t={[o]:d};return d++,t}throw new Error(`Cannot create a JSObjectReference from the value '${e}'.`)}function p(e){let t=-1;if(e instanceof ArrayBuffer&&(e=new Uint8Array(e)),e instanceof Blob)t=e.size;else{if(!(e.buffer instanceof ArrayBuffer))throw new Error("Supplied value is not a typed array or blob.");if(void 0===e.byteLength)throw new Error(`Cannot create a JSStreamReference from the value '${e}' as it doesn't have a byteLength.`);t=e.byteLength}const n={__jsStreamReferenceLength:t};try{const t=h(e);n.__jsObjectId=t.__jsObjectId}catch(t){throw new Error(`Cannot create a JSStreamReference from the value '${e}'.`)}return n}function y(e){return e?JSON.parse(e,((e,n)=>t.reduce(((t,n)=>n(e,t)),n))):null}function g(e,t,n,r){const o=w();if(o.invokeDotNetFromJS){const s=k(r),a=o.invokeDotNetFromJS(e,t,n,s);return a?y(a):null}throw new Error("The current dispatcher does not support synchronous calls from JS to .NET. Use invokeMethodAsync instead.")}function b(e,t,n,r){if(e&&n)throw new Error(`For instance method calls, assemblyName should be null. Received '${e}'.`);const o=u++,s=new Promise(((e,t)=>{i[o]={resolve:e,reject:t}}));try{const s=k(r);w().beginInvokeDotNetFromJS(o,e,t,n,s)}catch(e){v(o,!1,e)}return s}function w(){if(null!==f)return f;throw new Error("No .NET call dispatcher has been set.")}function v(e,t,n){if(!i.hasOwnProperty(e))throw new Error(`There is no pending async call with ID ${e}.`);const r=i[e];delete i[e],t?r.resolve(n):r.reject(n)}function E(e){return e instanceof Error?`${e.message}\n${e.stack}`:e?e.toString():"null"}function _(e,t){const n=c[t];if(n)return n.findFunction(e);throw new Error(`JS object instance with ID ${t} does not exist (has it been disposed?).`)}function C(e){delete c[e]}e.attachDispatcher=function(e){f=e},e.attachReviver=m,e.invokeMethod=function(e,t,...n){return g(e,t,null,n)},e.invokeMethodAsync=function(e,t,...n){return b(e,t,null,n)},e.createJSObjectReference=h,e.createJSStreamReference=p,e.disposeJSObjectReference=function(e){const t=e&&e.__jsObjectId;"number"==typeof t&&C(t)},function(e){e[e.Default=0]="Default",e[e.JSObjectReference=1]="JSObjectReference",e[e.JSStreamReference=2]="JSStreamReference",e[e.JSVoidResult=3]="JSVoidResult"}(l=e.JSCallResultType||(e.JSCallResultType={})),e.jsCallDispatcher={findJSFunction:_,disposeJSObjectReferenceById:C,invokeJSFromDotNet:(e,t,n,r)=>{const o=R(_(e,r).apply(null,y(t)),n);return null==o?null:k(o)},beginInvokeJSFromDotNet:(e,t,n,r,o)=>{const s=new Promise((e=>{e(_(t,o).apply(null,y(n)))}));e&&s.then((t=>k([e,!0,R(t,r)]))).then((t=>w().endInvokeJSFromDotNet(e,!0,t)),(t=>w().endInvokeJSFromDotNet(e,!1,JSON.stringify([e,!1,E(t)]))))},endInvokeDotNetFromJS:(e,t,n)=>{const r=t?y(n):new Error(n);v(parseInt(e,10),t,r)},receiveByteArray:(e,t)=>{n.set(e,t)},supplyDotNetStream:(e,t)=>{if(r.has(e)){const n=r.get(e);r.delete(e),n.resolve(t)}else{const n=new S;n.resolve(t),r.set(e,n)}}};class A{constructor(e){this._id=e}invokeMethod(e,...t){return g(null,e,this._id,t)}invokeMethodAsync(e,...t){return b(null,e,this._id,t)}dispose(){b(null,"__Dispose",this._id,null).catch((e=>console.error(e)))}serializeAsArg(){return{__dotNetObject:this._id}}}e.DotNetObject=A,m((function(e,t){if(t&&"object"==typeof t){if(t.hasOwnProperty("__dotNetObject"))return new A(t.__dotNetObject);if(t.hasOwnProperty(o)){const e=t.__jsObjectId,n=c[e];if(n)return n.getWrappedObject();throw new Error(`JS object instance with Id '${e}' does not exist. It may have been disposed.`)}if(t.hasOwnProperty(s)){const e=t["__byte[]"],r=n.get(e);if(void 0===r)throw new Error(`Byte array index '${e}' does not exist.`);return n.delete(e),r}if(t.hasOwnProperty("__dotNetStream"))return new I(t.__dotNetStream)}return t}));class I{constructor(e){if(r.has(e))this._streamPromise=r.get(e).streamPromise,r.delete(e);else{const t=new S;r.set(e,t),this._streamPromise=t.streamPromise}}stream(){return this._streamPromise}async arrayBuffer(){return new Response(await this.stream()).arrayBuffer()}}class S{constructor(){this.streamPromise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}function R(e,t){switch(t){case l.Default:return e;case l.JSObjectReference:return h(e);case l.JSStreamReference:return p(e);case l.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${t}'.`)}}let N=0;function k(e){return N=0,JSON.stringify(e,O)}function O(e,t){if(t instanceof A)return t.serializeAsArg();if(t instanceof Uint8Array){f.sendByteArray(N,t);const e={[s]:N};return N++,e}return t}}(e||(e={})),function(e){e[e.prependFrame=1]="prependFrame",e[e.removeFrame=2]="removeFrame",e[e.setAttribute=3]="setAttribute",e[e.removeAttribute=4]="removeAttribute",e[e.updateText=5]="updateText",e[e.stepIn=6]="stepIn",e[e.stepOut=7]="stepOut",e[e.updateMarkup=8]="updateMarkup",e[e.permutationListEntry=9]="permutationListEntry",e[e.permutationListEnd=10]="permutationListEnd"}(t||(t={})),function(e){e[e.element=1]="element",e[e.text=2]="text",e[e.attribute=3]="attribute",e[e.component=4]="component",e[e.region=5]="region",e[e.elementReferenceCapture=6]="elementReferenceCapture",e[e.markup=8]="markup"}(n||(n={}));class r{constructor(e,t){this.componentId=e,this.fieldValue=t}static fromEvent(e,t){const n=t.target;if(n instanceof Element){const t=function(e){return e instanceof HTMLInputElement?e.type&&"checkbox"===e.type.toLowerCase()?{value:e.checked}:{value:e.value}:e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement?{value:e.value}:null}(n);if(t)return new r(e,t.value)}return null}}const o=new Map,s=new Map,a=[];function i(e){return o.get(e)}function c(e){const t=o.get(e);return(null==t?void 0:t.browserEventName)||e}function l(e,t){e.forEach((e=>o.set(e,t)))}function u(e){const t=[];for(let n=0;ne.selected)).map((e=>e.value))}}{const e=function(e){return!!e&&"INPUT"===e.tagName&&"checkbox"===e.getAttribute("type")}(t);return{value:e?!!t.checked:t.value}}}}),l(["copy","cut","paste"],{createEventArgs:e=>({type:e.type})}),l(["drag","dragend","dragenter","dragleave","dragover","dragstart","drop"],{createEventArgs:e=>{return{...d(t=e),dataTransfer:t.dataTransfer?{dropEffect:t.dataTransfer.dropEffect,effectAllowed:t.dataTransfer.effectAllowed,files:Array.from(t.dataTransfer.files).map((e=>e.name)),items:Array.from(t.dataTransfer.items).map((e=>({kind:e.kind,type:e.type}))),types:t.dataTransfer.types}:null};var t}}),l(["focus","blur","focusin","focusout"],{createEventArgs:e=>({type:e.type})}),l(["keydown","keyup","keypress"],{createEventArgs:e=>{return{key:(t=e).key,code:t.code,location:t.location,repeat:t.repeat,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["contextmenu","click","mouseover","mouseout","mousemove","mousedown","mouseup","mouseleave","mouseenter","dblclick"],{createEventArgs:e=>d(e)}),l(["error"],{createEventArgs:e=>{return{message:(t=e).message,filename:t.filename,lineno:t.lineno,colno:t.colno,type:t.type};var t}}),l(["loadstart","timeout","abort","load","loadend","progress"],{createEventArgs:e=>{return{lengthComputable:(t=e).lengthComputable,loaded:t.loaded,total:t.total,type:t.type};var t}}),l(["touchcancel","touchend","touchmove","touchenter","touchleave","touchstart"],{createEventArgs:e=>{return{detail:(t=e).detail,touches:u(t.touches),targetTouches:u(t.targetTouches),changedTouches:u(t.changedTouches),ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["gotpointercapture","lostpointercapture","pointercancel","pointerdown","pointerenter","pointerleave","pointermove","pointerout","pointerover","pointerup"],{createEventArgs:e=>{return{...d(t=e),pointerId:t.pointerId,width:t.width,height:t.height,pressure:t.pressure,tiltX:t.tiltX,tiltY:t.tiltY,pointerType:t.pointerType,isPrimary:t.isPrimary};var t}}),l(["wheel","mousewheel"],{createEventArgs:e=>{return{...d(t=e),deltaX:t.deltaX,deltaY:t.deltaY,deltaZ:t.deltaZ,deltaMode:t.deltaMode};var t}}),l(["toggle"],{createEventArgs:()=>({})});const f=["date","datetime-local","month","time","week"],m=new Map;let h,p,y=0;const g={async add(e,t,n){if(!n)throw new Error("initialParameters must be an object, even if empty.");const r="__bl-dynamic-root:"+(++y).toString();m.set(r,e);const o=await v().invokeMethodAsync("AddRootComponent",t,r),s=new w(o,p[t]);return await s.setParameters(n),s}};class b{invoke(e){return this._callback(e)}setCallback(t){this._selfJSObjectReference||(this._selfJSObjectReference=e.createJSObjectReference(this)),this._callback=t}getJSObjectReference(){return this._selfJSObjectReference}dispose(){this._selfJSObjectReference&&e.disposeJSObjectReference(this._selfJSObjectReference)}}class w{constructor(e,t){this._jsEventCallbackWrappers=new Map,this._componentId=e;for(const e of t)"eventcallback"===e.type&&this._jsEventCallbackWrappers.set(e.name.toLowerCase(),new b)}setParameters(e){const t={},n=Object.entries(e||{}),r=n.length;for(const[e,r]of n){const n=this._jsEventCallbackWrappers.get(e.toLowerCase());n&&r?(n.setCallback(r),t[e]=n.getJSObjectReference()):t[e]=r}return v().invokeMethodAsync("SetRootComponentParameters",this._componentId,r,t)}async dispose(){if(null!==this._componentId){await v().invokeMethodAsync("RemoveRootComponent",this._componentId),this._componentId=null;for(const e of this._jsEventCallbackWrappers.values())e.dispose()}}}function v(){if(!h)throw new Error("Dynamic root components have not been enabled in this application.");return h}const E=new Map;let _;const C=new Promise((e=>{_=e}));function A(e,t,n){return S(e,t.eventHandlerId,(()=>I(e).invokeMethodAsync("DispatchEventAsync",t,n)))}function I(e){const t=E.get(e);if(!t)throw new Error(`No interop methods are registered for renderer ${e}`);return t}let S=(e,t,n)=>n();const R=j(["abort","blur","canplay","canplaythrough","change","cuechange","durationchange","emptied","ended","error","focus","load","loadeddata","loadedmetadata","loadend","loadstart","mouseenter","mouseleave","pointerenter","pointerleave","pause","play","playing","progress","ratechange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeupdate","toggle","unload","volumechange","waiting","DOMNodeInsertedIntoDocument","DOMNodeRemovedFromDocument"]),N={submit:!0},k=j(["click","dblclick","mousedown","mousemove","mouseup"]);class O{constructor(e){this.browserRendererId=e,this.afterClickCallbacks=[];const t=++O.nextEventDelegatorId;this.eventsCollectionKey=`_blazorEvents_${t}`,this.eventInfoStore=new F(this.onGlobalEvent.bind(this))}setListener(e,t,n,r){const o=this.getEventHandlerInfosForElement(e,!0),s=o.getHandler(t);if(s)this.eventInfoStore.update(s.eventHandlerId,n);else{const s={element:e,eventName:t,eventHandlerId:n,renderingComponentId:r};this.eventInfoStore.add(s),o.setHandler(t,s)}}getHandler(e){return this.eventInfoStore.get(e)}removeListener(e){const t=this.eventInfoStore.remove(e);if(t){const e=t.element,n=this.getEventHandlerInfosForElement(e,!1);n&&n.removeHandler(t.eventName)}}notifyAfterClick(e){this.afterClickCallbacks.push(e),this.eventInfoStore.addGlobalListener("click")}setStopPropagation(e,t,n){this.getEventHandlerInfosForElement(e,!0).stopPropagation(t,n)}setPreventDefault(e,t,n){this.getEventHandlerInfosForElement(e,!0).preventDefault(t,n)}onGlobalEvent(e){if(!(e.target instanceof Element))return;this.dispatchGlobalEventToAllElements(e.type,e);const t=(n=e.type,s.get(n));var n;t&&t.forEach((t=>this.dispatchGlobalEventToAllElements(t,e))),"click"===e.type&&this.afterClickCallbacks.forEach((t=>t(e)))}dispatchGlobalEventToAllElements(e,t){const n=t.composedPath();let o=n.shift(),s=null,a=!1;const c=Object.prototype.hasOwnProperty.call(R,e);let l=!1;for(;o;){const f=o,m=this.getEventHandlerInfosForElement(f,!1);if(m){const n=m.getHandler(e);if(n&&(u=f,d=t.type,!((u instanceof HTMLButtonElement||u instanceof HTMLInputElement||u instanceof HTMLTextAreaElement||u instanceof HTMLSelectElement)&&Object.prototype.hasOwnProperty.call(k,d)&&u.disabled))){if(!a){const n=i(e);s=(null==n?void 0:n.createEventArgs)?n.createEventArgs(t):{},a=!0}Object.prototype.hasOwnProperty.call(N,t.type)&&t.preventDefault(),A(this.browserRendererId,{eventHandlerId:n.eventHandlerId,eventName:e,eventFieldInfo:r.fromEvent(n.renderingComponentId,t)},s)}m.stopPropagation(e)&&(l=!0),m.preventDefault(e)&&t.preventDefault()}o=c||l?void 0:n.shift()}var u,d}getEventHandlerInfosForElement(e,t){return Object.prototype.hasOwnProperty.call(e,this.eventsCollectionKey)?e[this.eventsCollectionKey]:t?e[this.eventsCollectionKey]=new T:null}}O.nextEventDelegatorId=0;class F{constructor(e){this.globalListener=e,this.infosByEventHandlerId={},this.countByEventName={},a.push(this.handleEventNameAliasAdded.bind(this))}add(e){if(this.infosByEventHandlerId[e.eventHandlerId])throw new Error(`Event ${e.eventHandlerId} is already tracked`);this.infosByEventHandlerId[e.eventHandlerId]=e,this.addGlobalListener(e.eventName)}get(e){return this.infosByEventHandlerId[e]}addGlobalListener(e){if(e=c(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e))this.countByEventName[e]++;else{this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(R,e);document.addEventListener(e,this.globalListener,t)}}update(e,t){if(Object.prototype.hasOwnProperty.call(this.infosByEventHandlerId,t))throw new Error(`Event ${t} is already tracked`);const n=this.infosByEventHandlerId[e];delete this.infosByEventHandlerId[e],n.eventHandlerId=t,this.infosByEventHandlerId[t]=n}remove(e){const t=this.infosByEventHandlerId[e];if(t){delete this.infosByEventHandlerId[e];const n=c(t.eventName);0==--this.countByEventName[n]&&(delete this.countByEventName[n],document.removeEventListener(n,this.globalListener))}return t}handleEventNameAliasAdded(e,t){if(Object.prototype.hasOwnProperty.call(this.countByEventName,e)){const n=this.countByEventName[e];delete this.countByEventName[e],document.removeEventListener(e,this.globalListener),this.addGlobalListener(t),this.countByEventName[t]+=n-1}}}class T{constructor(){this.handlers={},this.preventDefaultFlags=null,this.stopPropagationFlags=null}getHandler(e){return Object.prototype.hasOwnProperty.call(this.handlers,e)?this.handlers[e]:null}setHandler(e,t){this.handlers[e]=t}removeHandler(e){delete this.handlers[e]}preventDefault(e,t){return void 0!==t&&(this.preventDefaultFlags=this.preventDefaultFlags||{},this.preventDefaultFlags[e]=t),!!this.preventDefaultFlags&&this.preventDefaultFlags[e]}stopPropagation(e,t){return void 0!==t&&(this.stopPropagationFlags=this.stopPropagationFlags||{},this.stopPropagationFlags[e]=t),!!this.stopPropagationFlags&&this.stopPropagationFlags[e]}}function j(e){const t={};return e.forEach((e=>{t[e]=!0})),t}const D=Y("_blazorLogicalChildren"),L=Y("_blazorLogicalParent"),B=Y("_blazorLogicalEnd");function P(e,t){if(e.childNodes.length>0&&!t)throw new Error("New logical elements must start empty, or allowExistingContents must be true");return D in e||(e[D]=[]),e}function M(e,t){const n=document.createComment("!");return x(n,e,t),n}function x(e,t,n){const r=e;if(e instanceof Comment&&U(r)&&U(r).length>0)throw new Error("Not implemented: inserting non-empty logical container");if(H(r))throw new Error("Not implemented: moving existing logical children");const o=U(t);if(n0;)$(n,0)}const r=n;r.parentNode.removeChild(r)}function H(e){return e[L]||null}function J(e,t){return U(e)[t]}function z(e){const t=K(e);return"http://www.w3.org/2000/svg"===t.namespaceURI&&"foreignObject"!==t.tagName}function U(e){return e[D]}function W(e,t){const n=U(e);t.forEach((e=>{e.moveRangeStart=n[e.fromSiblingIndex],e.moveRangeEnd=X(e.moveRangeStart)})),t.forEach((t=>{const r=document.createComment("marker");t.moveToBeforeMarker=r;const o=n[t.toSiblingIndex+1];o?o.parentNode.insertBefore(r,o):G(r,e)})),t.forEach((e=>{const t=e.moveToBeforeMarker,n=t.parentNode,r=e.moveRangeStart,o=e.moveRangeEnd;let s=r;for(;s;){const e=s.nextSibling;if(n.insertBefore(s,t),s===o)break;s=e}n.removeChild(t)})),t.forEach((e=>{n[e.toSiblingIndex]=e.moveRangeStart}))}function K(e){if(e instanceof Element||e instanceof DocumentFragment)return e;if(e instanceof Comment)return e.parentNode;throw new Error("Not a valid logical element")}function V(e){const t=U(H(e));return t[Array.prototype.indexOf.call(t,e)+1]||null}function G(e,t){if(t instanceof Element||t instanceof DocumentFragment)t.appendChild(e);else{if(!(t instanceof Comment))throw new Error(`Cannot append node because the parent is not a valid logical element. Parent: ${t}`);{const n=V(t);n?n.parentNode.insertBefore(e,n):G(e,H(t))}}}function X(e){if(e instanceof Element||e instanceof DocumentFragment)return e;const t=V(e);if(t)return t.previousSibling;{const t=H(e);return t instanceof Element||t instanceof DocumentFragment?t.lastChild:X(t)}}function Y(e){return"function"==typeof Symbol?Symbol():e}function q(e){return`_bl_${e}`}e.attachReviver(((e,t)=>t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,"__internalId")&&"string"==typeof t.__internalId?function(e){const t=`[${q(e)}]`;return document.querySelector(t)}(t.__internalId):t));const Z="_blazorDeferredValue",Q=document.createElement("template"),ee=document.createElementNS("http://www.w3.org/2000/svg","g"),te={},ne="__internal_",re="preventDefault_",oe="stopPropagation_";class se{constructor(e){this.rootComponentIds=new Set,this.childComponentLocations={},this.eventDelegator=new O(e),this.eventDelegator.notifyAfterClick((e=>{if(!he)return;if(0!==e.button||function(e){return e.ctrlKey||e.shiftKey||e.altKey||e.metaKey}(e))return;if(e.defaultPrevented)return;const t=function(e){const t=!window._blazorDisableComposedPath&&e.composedPath&&e.composedPath();if(t){for(let e=0;edocument.baseURI,getLocationHref:()=>location.href};function Ae(e,t,n=!1){const r=Te(e);!t.forceLoad&&De(r)?Ie(r,!1,t.replaceHistoryEntry,t.historyEntryState,n):function(e,t){if(location.href===e){const t=e+"?";history.replaceState(null,"",t),location.replace(e)}else t?location.replace(e):location.href=e}(e,t.replaceHistoryEntry)}async function Ie(e,t,n,r,o=!1){Re(),(o||!ye||await Ne(e,r,t))&&(fe=!0,n?history.replaceState({userState:r,_index:ge},"",e):(ge++,history.pushState({userState:r,_index:ge},"",e)),await ke(t))}function Se(e){return new Promise((t=>{const n=Ee;Ee=()=>{Ee=n,t()},history.go(e)}))}function Re(){_e&&(_e(!1),_e=null)}function Ne(e,t,n){return new Promise((r=>{Re(),ve?(be++,_e=r,ve(be,e,t,n)):r(!1)}))}async function ke(e){var t;we&&await we(location.href,null===(t=history.state)||void 0===t?void 0:t.userState,e)}async function Oe(e){var t,n;Ee&&await Ee(e),ge=null!==(n=null===(t=history.state)||void 0===t?void 0:t._index)&&void 0!==n?n:0}let Fe;function Te(e){return Fe=Fe||document.createElement("a"),Fe.href=e,Fe.href}function je(e,t){return e?e.tagName===t?e:je(e.parentElement,t):null}function De(e){const t=(n=document.baseURI).substring(0,n.lastIndexOf("/"));var n;const r=e.charAt(t.length);return e.startsWith(t)&&(""===r||"/"===r||"?"===r||"#"===r)}const Le={focus:function(e,t){if(e instanceof HTMLElement)e.focus({preventScroll:t});else{if(!(e instanceof SVGElement))throw new Error("Unable to focus an invalid element.");if(!e.hasAttribute("tabindex"))throw new Error("Unable to focus an SVG element that does not have a tabindex.");e.focus({preventScroll:t})}},focusBySelector:function(e){const t=document.querySelector(e);t&&(t.hasAttribute("tabindex")||(t.tabIndex=-1),t.focus())}},Be={init:function(e,t,n,r=50){const o=Me(t);(o||document.documentElement).style.overflowAnchor="none";const s=document.createRange();u(n.parentElement)&&(t.style.display="table-row",n.style.display="table-row");const a=new IntersectionObserver((function(r){r.forEach((r=>{var o;if(!r.isIntersecting)return;s.setStartAfter(t),s.setEndBefore(n);const a=s.getBoundingClientRect().height,i=null===(o=r.rootBounds)||void 0===o?void 0:o.height;r.target===t?e.invokeMethodAsync("OnSpacerBeforeVisible",r.intersectionRect.top-r.boundingClientRect.top,a,i):r.target===n&&n.offsetHeight>0&&e.invokeMethodAsync("OnSpacerAfterVisible",r.boundingClientRect.bottom-r.intersectionRect.bottom,a,i)}))}),{root:o,rootMargin:`${r}px`});a.observe(t),a.observe(n);const i=l(t),c=l(n);function l(e){const t={attributes:!0},n=new MutationObserver(((n,r)=>{u(e.parentElement)&&(r.disconnect(),e.style.display="table-row",r.observe(e,t)),a.unobserve(e),a.observe(e)}));return n.observe(e,t),n}function u(e){return null!==e&&(e instanceof HTMLTableElement&&""===e.style.display||"table"===e.style.display||e instanceof HTMLTableSectionElement&&""===e.style.display||"table-row-group"===e.style.display)}Pe[e._id]={intersectionObserver:a,mutationObserverBefore:i,mutationObserverAfter:c}},dispose:function(e){const t=Pe[e._id];t&&(t.intersectionObserver.disconnect(),t.mutationObserverBefore.disconnect(),t.mutationObserverAfter.disconnect(),e.dispose(),delete Pe[e._id])}},Pe={};function Me(e){return e&&e!==document.body&&e!==document.documentElement?"visible"!==getComputedStyle(e).overflowY?e:Me(e.parentElement):null}const xe={getAndRemoveExistingTitle:function(){var e;const t=document.head?document.head.getElementsByTagName("title"):[];if(0===t.length)return null;let n=null;for(let r=t.length-1;r>=0;r--){const o=t[r],s=o.previousSibling;s instanceof Comment&&null!==H(s)||(null===n&&(n=o.textContent),null===(e=o.parentNode)||void 0===e||e.removeChild(o))}return n}},$e={init:function(e,t){t._blazorInputFileNextFileId=0,t.addEventListener("click",(function(){t.value=""})),t.addEventListener("change",(function(){t._blazorFilesById={};const n=Array.prototype.map.call(t.files,(function(e){const n={id:++t._blazorInputFileNextFileId,lastModified:new Date(e.lastModified).toISOString(),name:e.name,size:e.size,contentType:e.type,readPromise:void 0,arrayBuffer:void 0,blob:e};return t._blazorFilesById[n.id]=n,n}));e.invokeMethodAsync("NotifyChange",n)}))},toImageFile:async function(e,t,n,r,o){const s=He(e,t),a=await new Promise((function(e){const t=new Image;t.onload=function(){URL.revokeObjectURL(t.src),e(t)},t.onerror=function(){t.onerror=null,URL.revokeObjectURL(t.src)},t.src=URL.createObjectURL(s.blob)})),i=await new Promise((function(e){var t;const s=Math.min(1,r/a.width),i=Math.min(1,o/a.height),c=Math.min(s,i),l=document.createElement("canvas");l.width=Math.round(a.width*c),l.height=Math.round(a.height*c),null===(t=l.getContext("2d"))||void 0===t||t.drawImage(a,0,0,l.width,l.height),l.toBlob(e,n)})),c={id:++e._blazorInputFileNextFileId,lastModified:s.lastModified,name:s.name,size:(null==i?void 0:i.size)||0,contentType:n,blob:i||s.blob};return e._blazorFilesById[c.id]=c,c},readFileData:async function(e,t){return He(e,t).blob}};function He(e,t){const n=e._blazorFilesById[t];if(!n)throw new Error(`There is no file with ID ${t}. The file list may have changed. See https://aka.ms/aspnet/blazor-input-file-multiple-selections.`);return n}const Je=new Set,ze={enableNavigationPrompt:function(e){0===Je.size&&window.addEventListener("beforeunload",Ue),Je.add(e)},disableNavigationPrompt:function(e){Je.delete(e),0===Je.size&&window.removeEventListener("beforeunload",Ue)}};function Ue(e){e.preventDefault(),e.returnValue=!0}const We=new Map,Ke={navigateTo:function(e,t,n=!1){Ae(e,t instanceof Object?t:{forceLoad:t,replaceHistoryEntry:n})},registerCustomEventType:function(e,t){if(!t)throw new Error("The options parameter is required.");if(o.has(e))throw new Error(`The event '${e}' is already registered.`);if(t.browserEventName){const n=s.get(t.browserEventName);n?n.push(e):s.set(t.browserEventName,[e]),a.forEach((n=>n(e,t.browserEventName)))}o.set(e,t)},rootComponents:g,_internal:{navigationManager:Ce,domWrapper:Le,Virtualize:Be,PageTitle:xe,InputFile:$e,NavigationLock:ze,getJSDataStreamChunk:async function(e,t,n){return e instanceof Blob?await async function(e,t,n){const r=e.slice(t,t+n),o=await r.arrayBuffer();return new Uint8Array(o)}(e,t,n):function(e,t,n){return new Uint8Array(e.buffer,e.byteOffset+t,n)}(e,t,n)},receiveDotNetDataStream:function(t,n,r,o){let s=We.get(t);if(!s){const n=new ReadableStream({start(e){We.set(t,e),s=e}});e.jsCallDispatcher.supplyDotNetStream(t,n)}o?(s.error(o),We.delete(t)):0===r?(s.close(),We.delete(t)):s.enqueue(n.length===r?n:n.subarray(0,r))},attachWebRendererInterop:function(t,n,r,o){if(E.has(t))throw new Error(`Interop methods are already registered for renderer ${t}`);E.set(t,n),Object.keys(r).length>0&&function(t,n,r){if(h)throw new Error("Dynamic root components have already been enabled.");h=t,p=n;for(const[t,o]of Object.entries(r)){const r=e.jsCallDispatcher.findJSFunction(t,0);for(const e of o)r(e,n[e])}}(I(t),r,o),_()}}};let Ve;function Ge(e){return Ve=e,Ve}var Xe,Ye;window.Blazor=Ke;const qe=navigator,Ze=qe.userAgentData&&qe.userAgentData.brands,Qe=Ze?Ze.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):window.chrome,et=null!==(Ye=null===(Xe=qe.userAgentData)||void 0===Xe?void 0:Xe.platform)&&void 0!==Ye?Ye:navigator.platform;let tt=!1,nt=!1;function rt(){return(tt||nt)&&Qe}let ot=!1;function st(){const e=document.querySelector("#blazor-error-ui");e&&(e.style.display="block"),ot||(ot=!0,document.querySelectorAll("#blazor-error-ui .reload").forEach((e=>{e.onclick=function(e){location.reload(),e.preventDefault()}})),document.querySelectorAll("#blazor-error-ui .dismiss").forEach((e=>{e.onclick=function(e){const t=document.querySelector("#blazor-error-ui");t&&(t.style.display="none"),e.preventDefault()}})))}class at{constructor(e,t){this.bootConfig=e,this.applicationEnvironment=t}static async initAsync(e,t){const n=void 0!==e?e("manifest","blazor.boot.json","_framework/blazor.boot.json",""):a("_framework/blazor.boot.json");let r;r=n?"string"==typeof n?await a(n):await n:await a("_framework/blazor.boot.json");const o=t||r.headers.get("Blazor-Environment")||"Production",s=await r.json();return s.modifiableAssemblies=r.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES"),s.aspnetCoreBrowserTools=r.headers.get("ASPNETCORE-BROWSER-TOOLS"),new at(s,o);function a(e){return fetch(e,{method:"GET",credentials:"include",cache:"no-cache"})}}}var it;let ct,lt,ut,dt;!function(e){e[e.Sharded=0]="Sharded",e[e.All=1]="All",e[e.Invariant=2]="Invariant"}(it||(it={}));const ft=Math.pow(2,32),mt=Math.pow(2,21)-1;let ht=null;function pt(e){return lt.getI32(e)}const yt={start:async function(t){(function(e){tt=!!e.bootConfig.resources.pdb,nt=e.bootConfig.debugBuild;const t=et.match(/^Mac/i)?"Cmd":"Alt";rt()&&console.info(`Debugging hotkey: Shift+${t}+D (when application has focus)`),document.addEventListener("keydown",(e=>{e.shiftKey&&(e.metaKey||e.altKey)&&"KeyD"===e.code&&(nt||tt?Qe?function(){const e=document.createElement("a");e.href=`_framework/debug?url=${encodeURIComponent(location.href)}`,e.target="_blank",e.rel="noopener noreferrer",e.click()}():console.error("Currently, only Microsoft Edge (80+), Google Chrome, or Chromium, are supported for debugging."):console.error("Cannot start debugging, because the application was not compiled with debugging enabled."))}))})(t),await async function(t){let n,r;const o=new Promise(((e,t)=>{n=e,r=t})),s=async function(e){if("undefined"==typeof WebAssembly||!WebAssembly.validate)throw new Error("This browser does not support WebAssembly.");const t=Object.keys(e.bootConfig.resources.runtime).filter((e=>e.startsWith("dotnet.")&&e.endsWith(".js")))[0],n=e.bootConfig.resources.runtime[t];let r,o=`_framework/${t}`;if(e.startOptions.loadBootResource){const r="dotnetjs",s=e.startOptions.loadBootResource(r,t,o,n);if("string"==typeof s)o=s;else if(s)throw new Error(`For a ${r} resource, custom loaders must supply a URI string.`)}if(e.bootConfig.cacheBootResources){const e=document.createElement("link");e.rel="modulepreload",e.href=o,e.crossOrigin="anonymous",e.integrity=n,document.head.appendChild(e)}const s=new Promise((e=>{r=e}));globalThis.__onDotnetRuntimeLoaded=e=>{delete globalThis.__onDotnetRuntimeLoaded,r(e)};const a=new URL(o,document.baseURI).toString(),{default:i}=await import(a);return i?(delete globalThis.__onDotnetRuntimeLoaded,i):await s}(t),a=t.bootConfig.resources,i=window.Module||{},c=["DEBUGGING ENABLED"],l=e=>c.indexOf(e)<0&&console.log(e),u=e=>{console.error(e),st()},d=i.preRun||[],f=i.postRun||[];i.preloadPlugins=[];let m=0;function h(){m++;const e=m/b.length*100;document.documentElement.style.setProperty("--blazor-load-percentage",`${e}%`),document.documentElement.style.setProperty("--blazor-load-percentage-text",`"${Math.floor(e)}%"`)}const p=t.loadResources(a.assembly,(e=>`_framework/${e}`),"assembly"),y=t.loadResources(a.pdb||{},(e=>`_framework/${e}`),"pdb"),g=t.loadResource("dotnet.wasm","_framework/dotnet.wasm",t.bootConfig.resources.runtime["dotnet.wasm"],"dotnetwasm"),b=p.concat(y,g);b.forEach((e=>e.response.then((e=>h()))));const w="dotnet.timezones.blat";let v,E;if(t.bootConfig.resources.runtime.hasOwnProperty(w)&&(v=t.loadResource(w,"_framework/dotnet.timezones.blat",t.bootConfig.resources.runtime["dotnet.timezones.blat"],"globalization"),b.push(v),v.response.then((e=>h()))),t.bootConfig.icuDataMode!==it.Invariant){const e=t.startOptions.applicationCulture||navigator.languages&&navigator.languages[0],n=function(e,t){if(!t||e.icuDataMode===it.All)return"icudt.dat";const n=t.split("-")[0];return["en","fr","it","de","es"].includes(n)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(n)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t.bootConfig,e);E=t.loadResource(n,`_framework/${n}`,t.bootConfig.resources.runtime[n],"globalization"),b.push(E),E.response.then((e=>h()))}const _=await s;return await _((o=>{const{MONO:s,BINDING:a,Module:c,IMPORTS:m}=o;async function h(e,t){const n=`blazor:${e.name}`;ut.addRunDependency(n);try{const n=await e.response.then((e=>e.arrayBuffer())),r=new Uint8Array(n),s=ut._malloc(r.length);new Uint8Array(ut.HEAPU8.buffer,s,r.length).set(r),lt.mono_wasm_add_assembly(t,s,r.length),lt.loaded_files.push((o=e.url,gt.href=o,gt.href))}catch(e){return void r(e)}var o;ut.removeRunDependency(n)}return ut=c,ct=a,lt=s,dt=m,{...i,disableDotnet6Compatibility:!1,preRun:[()=>{v&&async function(e){const t="blazor:timezonedata";ut.addRunDependency(t);const n=await e.response,r=await n.arrayBuffer();ut.FS_createPath("/","usr",!0,!0),ut.FS_createPath("/usr/","share",!0,!0),ut.FS_createPath("/usr/share/","zoneinfo",!0,!0),lt.mono_wasm_load_data_archive(new Uint8Array(r),"/usr/share/zoneinfo/"),ut.removeRunDependency(t)}(v),E&&async function(e){const t="blazor:icudata";ut.addRunDependency(t);const n=await e.response,r=new Uint8Array(await n.arrayBuffer()),o=lt.mono_wasm_load_bytes_into_heap(r);if(!lt.mono_wasm_load_icu_data(o))throw new Error("Error loading ICU asset.");ut.removeRunDependency(t)}(E),p.forEach((e=>h(e,Et(e.name,".dll")))),y.forEach((e=>h(e,e.name))),Ke._internal.dotNetCriticalError=e=>u(e||"(null)"),Ke._internal.getSatelliteAssemblies=e=>{const n=ct.mono_array_to_js_array(e),r=t.bootConfig.resources.satelliteResources;if(r){const e=Promise.all(n.filter((e=>r.hasOwnProperty(e))).map((e=>t.loadResources(r[e],(e=>`_framework/${e}`),"assembly"))).reduce(((e,t)=>e.concat(t)),new Array).map((async e=>(await e.response).arrayBuffer())));return ct.js_to_mono_obj(e.then((e=>(e.length&&(Ke._internal.readSatelliteAssemblies=()=>{const t=ct.mono_obj_array_new(e.length);for(let n=0;n{const r=ct.mono_array_to_js_array(n),o=t.bootConfig.resources.lazyAssembly;if(!o)throw new Error("No assemblies have been marked as lazy-loadable. Use the 'BlazorWebAssemblyLazyLoad' item group in your project file to enable lazy loading an assembly.");const s=r.filter((e=>o.hasOwnProperty(e)));if(s.length!==r.length){const e=r.filter((e=>!s.includes(e)));throw new Error(`${e.join()} must be marked with 'BlazorWebAssemblyLazyLoad' item group in your project file to allow lazy-loading.`)}let a;if(rt()){const e=t.bootConfig.resources.pdb,n=s.map((e=>Et(e,".pdb")));e&&(a=Promise.all(n.map((e=>o.hasOwnProperty(e)?t.loadResource(e,`_framework/${e}`,o[e],"pdb"):null)).map((async e=>e?(await e.response).arrayBuffer():null))))}const i=Promise.all(s.map((e=>t.loadResource(e,`_framework/${e}`,o[e],"assembly"))).map((async e=>(await e.response).arrayBuffer())));return ct.js_to_mono_obj(Promise.all([i,a]).then((t=>(e.assemblies=t[0],e.pdbs=t[1],e.assemblies.length&&(Ke._internal.readLazyAssemblies=()=>{const{assemblies:t}=e;if(!t)return ct.mono_obj_array_new(0);const n=ct.mono_obj_array_new(t.length);for(let e=0;e{const{assemblies:t,pdbs:n}=e;if(!t)return ct.mono_obj_array_new(0);const r=ct.mono_obj_array_new(t.length);for(let e=0;e{t.bootConfig.debugBuild&&t.bootConfig.cacheBootResources&&t.logToConsole(),t.purgeUnusedCacheEntriesAsync(),t.bootConfig.icuDataMode===it.Sharded&&(lt.mono_wasm_setenv("__BLAZOR_SHARDED_ICU","1"),t.startOptions.applicationCulture&<.mono_wasm_setenv("LANG",`${t.startOptions.applicationCulture}.UTF-8`));let r="UTC";try{r=Intl.DateTimeFormat().resolvedOptions().timeZone}catch{}lt.mono_wasm_setenv("TZ",r||"UTC"),t.bootConfig.modifiableAssemblies&<.mono_wasm_setenv("DOTNET_MODIFIABLE_ASSEMBLIES",t.bootConfig.modifiableAssemblies),t.bootConfig.aspnetCoreBrowserTools&<.mono_wasm_setenv("__ASPNETCORE_BROWSER_TOOLS",t.bootConfig.aspnetCoreBrowserTools),lt.mono_wasm_load_runtime("appBinDir",rt()?-1:0),lt.mono_wasm_runtime_ready();try{ct.bind_static_method("invalid-fqn","")}catch(e){}dt.Blazor={_internal:Ke._internal},function(){const t=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","InvokeDotNet"),n=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","BeginInvokeDotNet"),r=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","EndInvokeJS"),o=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","NotifyByteArrayAvailable");e.attachDispatcher({beginInvokeDotNetFromJS:(e,t,r,o,s)=>{if(_t(),!o&&!t)throw new Error("Either assemblyName or dotNetObjectId must have a non null value.");const a=o?o.toString():t;n(e?e.toString():null,a,r,s)},endInvokeJSFromDotNet:(e,t,n)=>{r(n)},sendByteArray:(e,t)=>{vt=t,o(e)},invokeDotNetFromJS:(e,n,r,o)=>(_t(),t(e||null,n,r?r.toString():null,o))})}(),n(o)},...f],print:l,printErr:u,instantiateWasm:(e,t)=>((async()=>{let n;try{const t=await g;n=await async function(e,t){var n;const r=await e.response,o="application/wasm"===(null===(n=r.headers)||void 0===n?void 0:n.get("content-type"));if(o&&"function"==typeof WebAssembly.instantiateStreaming)return(await WebAssembly.instantiateStreaming(r,t)).instance;{o||console.warn('WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await r.arrayBuffer();return(await WebAssembly.instantiate(e,t)).instance}}(t,e)}catch(e){throw u(e.toString()),e}t(n)})(),[]),onRuntimeInitialized:()=>{E||lt.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1")}}})),await o}(t)},callEntryPoint:async function(e){const t=[[]];try{await ct.call_assembly_entry_point(e,t,"m")}catch(e){console.error(e),st()}},toUint8Array:function(e){const t=bt(e),n=pt(t),r=new Uint8Array(n);return r.set(ut.HEAPU8.subarray(t+4,t+4+n)),r},getArrayLength:function(e){return pt(bt(e))},getArrayEntryPtr:function(e,t,n){return bt(e)+4+t*n},getObjectFieldsBaseAddress:function(e){return e+8},readInt16Field:function(e,t){return n=e+(t||0),lt.getI16(n);var n},readInt32Field:function(e,t){return pt(e+(t||0))},readUint64Field:function(e,t){return function(e){const t=e>>2,n=ut.HEAPU32[t+1];if(n>mt)throw new Error(`Cannot read uint64 with high order part ${n}, because the result would exceed Number.MAX_SAFE_INTEGER.`);return n*ft+ut.HEAPU32[t]}(e+(t||0))},readFloatField:function(e,t){return n=e+(t||0),lt.getF32(n);var n},readObjectField:function(e,t){return pt(e+(t||0))},readStringField:function(e,t,n){const r=pt(e+(t||0));if(0===r)return null;if(n){const e=ct.unbox_mono_obj(r);return"boolean"==typeof e?e?"":null:e}let o;return ht?(o=ht.stringCache.get(r),void 0===o&&(o=ct.conv_string(r),ht.stringCache.set(r,o))):o=ct.conv_string(r),o},readStructField:function(e,t){return e+(t||0)},beginHeapLock:function(){return _t(),ht=new Ct,ht},invokeWhenHeapUnlocked:function(e){ht?ht.enqueuePostReleaseAction(e):e()}},gt=document.createElement("a");function bt(e){return e+12}function wt(e,t,n){const r=`[${e}] ${t}:${n}`;return ct.bind_static_method(r)}let vt=null;function Et(e,t){const n=e.lastIndexOf(".");if(n<0)throw new Error(`No extension to replace in '${e}'`);return e.substr(0,n)+t}function _t(){if(ht)throw new Error("Assertion failed - heap is currently locked")}class Ct{constructor(){this.stringCache=new Map}enqueuePostReleaseAction(e){this.postReleaseActions||(this.postReleaseActions=[]),this.postReleaseActions.push(e)}release(){var e;if(ht!==this)throw new Error("Trying to release a lock which isn't current");for(ht=null;null===(e=this.postReleaseActions)||void 0===e?void 0:e.length;)this.postReleaseActions.shift()(),_t()}}class At{constructor(e){this.batchAddress=e,this.arrayRangeReader=It,this.arrayBuilderSegmentReader=St,this.diffReader=Rt,this.editReader=Nt,this.frameReader=kt}updatedComponents(){return Ve.readStructField(this.batchAddress,0)}referenceFrames(){return Ve.readStructField(this.batchAddress,It.structLength)}disposedComponentIds(){return Ve.readStructField(this.batchAddress,2*It.structLength)}disposedEventHandlerIds(){return Ve.readStructField(this.batchAddress,3*It.structLength)}updatedComponentsEntry(e,t){return Ot(e,t,Rt.structLength)}referenceFramesEntry(e,t){return Ot(e,t,kt.structLength)}disposedComponentIdsEntry(e,t){const n=Ot(e,t,4);return Ve.readInt32Field(n)}disposedEventHandlerIdsEntry(e,t){const n=Ot(e,t,8);return Ve.readUint64Field(n)}}const It={structLength:8,values:e=>Ve.readObjectField(e,0),count:e=>Ve.readInt32Field(e,4)},St={structLength:12,values:e=>{const t=Ve.readObjectField(e,0),n=Ve.getObjectFieldsBaseAddress(t);return Ve.readObjectField(n,0)},offset:e=>Ve.readInt32Field(e,4),count:e=>Ve.readInt32Field(e,8)},Rt={structLength:4+St.structLength,componentId:e=>Ve.readInt32Field(e,0),edits:e=>Ve.readStructField(e,4),editsEntry:(e,t)=>Ot(e,t,Nt.structLength)},Nt={structLength:20,editType:e=>Ve.readInt32Field(e,0),siblingIndex:e=>Ve.readInt32Field(e,4),newTreeIndex:e=>Ve.readInt32Field(e,8),moveToSiblingIndex:e=>Ve.readInt32Field(e,8),removedAttributeName:e=>Ve.readStringField(e,16)},kt={structLength:36,frameType:e=>Ve.readInt16Field(e,4),subtreeLength:e=>Ve.readInt32Field(e,8),elementReferenceCaptureId:e=>Ve.readStringField(e,16),componentId:e=>Ve.readInt32Field(e,12),elementName:e=>Ve.readStringField(e,16),textContent:e=>Ve.readStringField(e,16),markupContent:e=>Ve.readStringField(e,16),attributeName:e=>Ve.readStringField(e,16),attributeValue:e=>Ve.readStringField(e,24,!0),attributeEventHandlerId:e=>Ve.readUint64Field(e,8)};function Ot(e,t,n){return Ve.getArrayEntryPtr(e,t,n)}class Ft{constructor(e,t,n){this.bootConfig=e,this.cacheIfUsed=t,this.startOptions=n,this.usedCacheKeys={},this.networkLoads={},this.cacheLoads={}}static async initAsync(e,t){const n=await async function(e){if(!e.cacheBootResources||"undefined"==typeof caches)return null;if(!1===window.isSecureContext)return null;const t=`blazor-resources-${document.baseURI.substring(document.location.origin.length)}`;try{return await caches.open(t)||null}catch{return null}}(e);return new Ft(e,n,t)}loadResources(e,t,n){return Object.keys(e).map((r=>this.loadResource(r,t(r),e[r],n)))}loadResource(e,t,n,r){return{name:e,url:t,response:this.cacheIfUsed?this.loadResourceWithCaching(this.cacheIfUsed,e,t,n,r):this.loadResourceWithoutCaching(e,t,n,r)}}logToConsole(){const e=Object.values(this.cacheLoads),t=Object.values(this.networkLoads),n=Tt(e),r=Tt(t),o=n+r;if(0===o)return;const s=this.bootConfig.linkerEnabled?"%c":"\n%cThis application was built with linking (tree shaking) disabled. Published applications will be significantly smaller.";console.groupCollapsed(`%cblazor%c Loaded ${jt(o)} resources${s}`,"background: purple; color: white; padding: 1px 3px; border-radius: 3px;","font-weight: bold;","font-weight: normal;"),e.length&&(console.groupCollapsed(`Loaded ${jt(n)} resources from cache`),console.table(this.cacheLoads),console.groupEnd()),t.length&&(console.groupCollapsed(`Loaded ${jt(r)} resources from network`),console.table(this.networkLoads),console.groupEnd()),console.groupEnd()}async purgeUnusedCacheEntriesAsync(){const e=this.cacheIfUsed;if(e){const t=(await e.keys()).map((async t=>{t.url in this.usedCacheKeys||await e.delete(t)}));await Promise.all(t)}}async loadResourceWithCaching(e,t,n,r,o){if(!r||0===r.length)throw new Error("Content hash is required");const s=Te(`${n}.${r}`);let a;this.usedCacheKeys[s]=!0;try{a=await e.match(s)}catch{}if(a){const e=parseInt(a.headers.get("content-length")||"0");return this.cacheLoads[t]={responseBytes:e},a}{const a=await this.loadResourceWithoutCaching(t,n,r,o);return this.addToCacheAsync(e,t,s,a),a}}loadResourceWithoutCaching(e,t,n,r){if(this.startOptions.loadBootResource){const o=this.startOptions.loadBootResource(r,e,t,n);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}return fetch(t,{cache:"no-cache",integrity:this.bootConfig.cacheBootResources?n:void 0})}async addToCacheAsync(e,t,n,r){const o=await r.clone().arrayBuffer(),s=function(e){if("undefined"!=typeof performance)return performance.getEntriesByName(e)[0]}(r.url),a=s&&s.encodedBodySize||void 0;this.networkLoads[t]={responseBytes:a};const i=new Response(o,{headers:{"content-type":r.headers.get("content-type")||"","content-length":(a||r.headers.get("content-length")||"").toString()}});try{await e.put(n,i)}catch{}}}function Tt(e){return e.reduce(((e,t)=>e+(t.responseBytes||0)),0)}function jt(e){return`${(e/1048576).toFixed(2)} MB`}class Dt{static async initAsync(e){Ke._internal.getApplicationEnvironment=()=>ct.js_string_to_mono_string(e.applicationEnvironment);const t=await Promise.all((e.bootConfig.config||[]).filter((t=>"appsettings.json"===t||t===`appsettings.${e.applicationEnvironment}.json`)).map((async e=>({name:e,content:await n(e)}))));async function n(e){const t=await fetch(e,{method:"GET",credentials:"include",cache:"no-cache"});return new Uint8Array(await t.arrayBuffer())}Ke._internal.getConfig=e=>{const n=ct.conv_string(e),r=t.find((e=>e.name===n));return r?ct.js_typed_array_to_array(r.content):void 0}}}class Lt{constructor(e){this.preregisteredComponents=e;const t={};for(let n=0;no.push(e))),e[L]=r,t&&(e[B]=t,P(t)),P(e)}(this.componentsById[t].start,this.componentsById[t].end)}getParameterValues(e){return this.componentsById[e].parameterValues}getParameterDefinitions(e){return this.componentsById[e].parameterDefinitions}getTypeName(e){return this.componentsById[e].typeName}getAssembly(e){return this.componentsById[e].assembly}getId(e){return this.preregisteredComponents[e].id}getCount(){return this.preregisteredComponents.length}}const Bt=/^\s*Blazor-Component-State:(?[a-zA-Z0-9+/=]+)$/;function Pt(e){var t;if(e.nodeType===Node.COMMENT_NODE){const n=e.textContent||"",r=Bt.exec(n),o=r&&r.groups&&r.groups.state;return o&&(null===(t=e.parentNode)||void 0===t||t.removeChild(e)),o}if(!e.hasChildNodes())return;const n=e.childNodes;for(let e=0;e.*)$/);function $t(e,t){const n=e.currentElement;if(n&&n.nodeType===Node.COMMENT_NODE&&n.textContent){const r=xt.exec(n.textContent),o=r&&r.groups&&r.groups.descriptor;if(!o)return;try{const r=function(e){const t=JSON.parse(e),{type:n}=t;if("server"!==n&&"webassembly"!==n)throw new Error(`Invalid component type '${n}'.`);return t}(o);switch(t){case"webassembly":return function(e,t,n){const{type:r,assembly:o,typeName:s,parameterDefinitions:a,parameterValues:i,prerenderId:c}=e;if("webassembly"===r){if(!o)throw new Error("assembly must be defined when using a descriptor.");if(!s)throw new Error("typeName must be defined when using a descriptor.");if(c){const e=Ht(c,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t,prerenderId:c,end:e}}return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t}}}(r,n,e);case"server":return function(e,t,n){const{type:r,descriptor:o,sequence:s,prerenderId:a}=e;if("server"===r){if(!o)throw new Error("descriptor must be defined when using a descriptor.");if(void 0===s)throw new Error("sequence must be defined when using a descriptor.");if(!Number.isInteger(s))throw new Error(`Error parsing the sequence '${s}' for component '${JSON.stringify(e)}'`);if(a){const e=Ht(a,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,sequence:s,descriptor:o,start:t,prerenderId:a,end:e}}return{type:r,sequence:s,descriptor:o,start:t}}}(r,n,e)}}catch(e){throw new Error(`Found malformed component comment at ${n.textContent}`)}}}function Ht(e,t){for(;t.next()&&t.currentElement;){const n=t.currentElement;if(n.nodeType!==Node.COMMENT_NODE)continue;if(!n.textContent)continue;const r=xt.exec(n.textContent),o=r&&r[1];if(o)return Jt(o,e),n}}function Jt(e,t){const n=JSON.parse(e);if(1!==Object.keys(n).length)throw new Error(`Invalid end of component comment: '${e}'`);const r=n.prerenderId;if(!r)throw new Error(`End of component comment must have a value for the prerendered property: '${e}'`);if(r!==t)throw new Error(`End of component comment prerendered property must match the start comment prerender id: '${t}', '${r}'`)}class zt{constructor(e){this.childNodes=e,this.currentIndex=-1,this.length=e.length}next(){return this.currentIndex++,this.currentIndexasync function(e,n){const r=function(e){const t=document.baseURI;return t.endsWith("/")?`${t}${e}`:`${t}/${e}`}(n),o=await import(r);if(void 0===o)return;const{beforeStart:s,afterStarted:a}=o;return a&&e.afterStartedCallbacks.push(a),s?s(...t):void 0}(this,e))))}async invokeAfterStartedCallbacks(e){await C,await Promise.all(this.afterStartedCallbacks.map((t=>t(e))))}}let Kt=!1;async function Vt(t){if(Kt)throw new Error("Blazor has already started.");Kt=!0,function(){if(window.parent!==window&&!window.opener&&window.frameElement){const e=window.sessionStorage&&window.sessionStorage["Microsoft.AspNetCore.Components.WebAssembly.Authentication.CachedAuthSettings"],t=e&&JSON.parse(e);return t&&t.redirect_uri&&location.href.startsWith(t.redirect_uri)}return!1}()&&await new Promise((()=>{})),S=(e,t,n)=>{const r=function(e){return de[e]}(e);r.eventDelegator.getHandler(t)&&yt.invokeWhenHeapUnlocked(n)},Ke._internal.applyHotReload=(t,n,r,o)=>{e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","ApplyHotReloadDelta",t,n,r,o)},Ke._internal.getApplyUpdateCapabilities=()=>e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","GetApplyUpdateCapabilities"),Ke._internal.invokeJSFromDotNet=Gt,Ke._internal.endInvokeDotNetFromJS=Xt,Ke._internal.receiveByteArray=Yt,Ke._internal.retrieveByteArray=qt;const n=Ge(yt);Ke.platform=n,Ke._internal.renderBatch=(e,t)=>{const n=yt.beginHeapLock();try{!function(e,t){const n=de[e];if(!n)throw new Error(`There is no browser renderer with ID ${e}.`);const r=t.arrayRangeReader,o=t.updatedComponents(),s=r.values(o),a=r.count(o),i=t.referenceFrames(),c=r.values(i),l=t.diffReader;for(let e=0;ect.js_string_to_mono_string(r()),Ke._internal.navigationManager.getUnmarshalledLocationHref=()=>ct.js_string_to_mono_string(o()),Ke._internal.navigationManager.listenForNavigationEvents((async(t,n,r)=>{await e.invokeMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChanged",t,n,r)}),(async(t,n,r,o)=>{const s=await e.invokeMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChangingAsync",n,r,o);Ke._internal.navigationManager.endLocationChanging(t,s)}));const s=null!=t?t:{},a=s.environment,i=at.initAsync(s.loadBootResource,a),c=function(e,t){return function(e){const t=Mt(e,"webassembly"),n=[];for(let e=0;ee.id-t.id))}(e)}(document),l=new Lt(c);Ke._internal.registeredComponents={getRegisteredComponentsCount:()=>l.getCount(),getId:e=>l.getId(e),getAssembly:e=>ct.js_string_to_mono_string(l.getAssembly(e)),getTypeName:e=>ct.js_string_to_mono_string(l.getTypeName(e)),getParameterDefinitions:e=>ct.js_string_to_mono_string(l.getParameterDefinitions(e)||""),getParameterValues:e=>ct.js_string_to_mono_string(l.getParameterValues(e)||"")},Ke._internal.getPersistedState=()=>ct.js_string_to_mono_string(Pt(document)||""),Ke._internal.attachRootComponentToElement=(e,t,n)=>{const r=l.resolveRegisteredElement(e);r?me(n,r,t,!1):function(e,t,n){const r="::after";let o=!1;if(e.endsWith(r))e=e.slice(0,-r.length),o=!0;else if(e.endsWith("::before"))throw new Error("The '::before' selector is not supported.");const s=function(e){const t=m.get(e);if(t)return m.delete(e),t}(e)||document.querySelector(e);if(!s)throw new Error(`Could not find any element matching selector '${e}'.`);me(n||0,P(s,!0),t,o)}(e,t,n)};const u=await i,d=await async function(e,t){const n=e.resources.libraryInitializers,r=new Wt;return n&&await r.importInitializersAsync(Object.keys(n),[t,e.resources.extensions]),r}(u.bootConfig,s),[f]=await Promise.all([Ft.initAsync(u.bootConfig,s||{}),Dt.initAsync(u)]);try{await n.start(f)}catch(e){throw new Error(`Failed to start platform. Reason: ${e}`)}n.callEntryPoint(f.bootConfig.entryAssembly),d.invokeAfterStartedCallbacks(Ke)}function Gt(t,n,r,o){const s=yt.readStringField(t,0),a=yt.readInt32Field(t,4),i=yt.readStringField(t,8),c=yt.readUint64Field(t,20);if(null!==i){const n=yt.readUint64Field(t,12);if(0!==n)return e.jsCallDispatcher.beginInvokeJSFromDotNet(n,s,i,a,c),0;{const t=e.jsCallDispatcher.invokeJSFromDotNet(s,i,a,c);return null===t?0:ct.js_string_to_mono_string(t)}}{const t=e.jsCallDispatcher.findJSFunction(s,c).call(null,n,r,o);switch(a){case e.JSCallResultType.Default:return t;case e.JSCallResultType.JSObjectReference:return e.createJSObjectReference(t).__jsObjectId;case e.JSCallResultType.JSStreamReference:{const n=e.createJSStreamReference(t),r=JSON.stringify(n);return ct.js_string_to_mono_string(r)}case e.JSCallResultType.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${a}'.`)}}}function Xt(t,n,r){const o=ct.conv_string(t),s=0!==n,a=ct.conv_string(r);e.jsCallDispatcher.endInvokeDotNetFromJS(o,s,a)}function Yt(t,n){const r=t,o=yt.toUint8Array(n);e.jsCallDispatcher.receiveByteArray(r,o)}function qt(){if(null===vt)throw new Error("Byte array not available for transfer");return ct.js_typed_array_to_array(vt)}Ke.start=Vt,document&&document.currentScript&&"false"!==document.currentScript.getAttribute("autostart")&&Vt().catch((e=>{void 0!==ut&&ut.printErr?ut.printErr(e):console.error(e)}))})();
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js.gz
new file mode 100644
index 000000000..b11efc1e8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js
new file mode 100644
index 000000000..133ee2bdf
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js
@@ -0,0 +1,33 @@
+//! Licensed to the .NET Foundation under one or more agreements.
+//! The .NET Foundation licenses this file to you under the MIT license.
+var __dotnet_runtime=function(e){"use strict";var t="7.0.5",n=false,r="Release";let o,s,i,a,c,u,l,f;const _={},d={};let m;function g(e,t){s=t.internal,i=t.marshaled_imports,o=t.module,w(e),a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread,b.quit=e.quit_,b.ExitStatus=e.ExitStatus,b.requirePromise=e.requirePromise}function w(e){a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread}function h(e){m=e}const p=undefined,b={javaScriptExports:{},mono_wasm_load_runtime_done:false,mono_wasm_bindings_is_ready:false,maxParallelDownloads:16,config:{environmentVariables:{}},diagnosticTracing:false},y=0,v=0,E=0,A=0,S=0,O=0,x=-1,j=0,$=0,N=0,k=0;function T(e){return void 0===e||null===e}const R=[[true,"mono_wasm_register_root","number",["number","number","string"]],[true,"mono_wasm_deregister_root",null,["number"]],[true,"mono_wasm_string_get_data",null,["number","number","number","number"]],[true,"mono_wasm_string_get_data_ref",null,["number","number","number","number"]],[true,"mono_wasm_set_is_debugger_attached","void",["bool"]],[true,"mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]],[true,"mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]],[true,"mono_wasm_setenv",null,["string","string"]],[true,"mono_wasm_parse_runtime_options",null,["number","number"]],[true,"mono_wasm_strdup","number",["string"]],[true,"mono_background_exec",null,[]],[true,"mono_set_timeout_exec",null,[]],[true,"mono_wasm_load_icu_data","number",["number"]],[true,"mono_wasm_get_icudt_name","string",["string"]],[false,"mono_wasm_add_assembly","number",["string","number","number"]],[true,"mono_wasm_add_satellite_assembly","void",["string","string","number","number"]],[false,"mono_wasm_load_runtime",null,["string","number"]],[true,"mono_wasm_change_debugger_log_level","void",["number"]],[true,"mono_wasm_get_corlib","number",[]],[true,"mono_wasm_assembly_load","number",["string"]],[true,"mono_wasm_find_corlib_class","number",["string","string"]],[true,"mono_wasm_assembly_find_class","number",["number","string","string"]],[true,"mono_wasm_runtime_run_module_cctor","void",["number"]],[true,"mono_wasm_find_corlib_type","number",["string","string"]],[true,"mono_wasm_assembly_find_type","number",["number","string","string"]],[true,"mono_wasm_assembly_find_method","number",["number","string","number"]],[true,"mono_wasm_invoke_method","number",["number","number","number","number"]],[false,"mono_wasm_invoke_method_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_string_get_utf8","number",["number"]],[true,"mono_wasm_string_from_utf16_ref","void",["number","number","number"]],[true,"mono_wasm_get_obj_type","number",["number"]],[true,"mono_wasm_array_length","number",["number"]],[true,"mono_wasm_array_get","number",["number","number"]],[true,"mono_wasm_array_get_ref","void",["number","number","number"]],[false,"mono_wasm_obj_array_new","number",["number"]],[false,"mono_wasm_obj_array_new_ref","void",["number","number"]],[false,"mono_wasm_obj_array_set","void",["number","number","number"]],[false,"mono_wasm_obj_array_set_ref","void",["number","number","number"]],[true,"mono_wasm_register_bundled_satellite_assemblies","void",[]],[false,"mono_wasm_try_unbox_primitive_and_get_type_ref","number",["number","number","number"]],[true,"mono_wasm_box_primitive_ref","void",["number","number","number","number"]],[true,"mono_wasm_intern_string_ref","void",["number"]],[true,"mono_wasm_assembly_get_entry_point","number",["number"]],[true,"mono_wasm_get_delegate_invoke_ref","number",["number"]],[true,"mono_wasm_string_array_new_ref","void",["number","number"]],[true,"mono_wasm_typed_array_new_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_class_get_type","number",["number"]],[true,"mono_wasm_type_get_class","number",["number"]],[true,"mono_wasm_get_type_name","string",["number"]],[true,"mono_wasm_get_type_aqn","string",["number"]],[true,"mono_wasm_event_pipe_enable","bool",["string","number","number","string","bool","number"]],[true,"mono_wasm_event_pipe_session_start_streaming","bool",["number"]],[true,"mono_wasm_event_pipe_session_disable","bool",["number"]],[true,"mono_wasm_diagnostic_server_create_thread","bool",["string","number"]],[true,"mono_wasm_diagnostic_server_thread_attach_to_runtime","void",[]],[true,"mono_wasm_diagnostic_server_post_resume_runtime","void",[]],[true,"mono_wasm_diagnostic_server_create_stream","number",[]],[true,"mono_wasm_string_from_js","number",["string"]],[false,"mono_wasm_exit","void",["number"]],[true,"mono_wasm_getenv","number",["string"]],[true,"mono_wasm_set_main_args","void",["number","number"]],[false,"mono_wasm_enable_on_demand_gc","void",["number"]],[false,"mono_profiler_init_aot","void",["number"]],[false,"mono_wasm_exec_regression","number",["number","string"]],[false,"mono_wasm_invoke_method_bound","number",["number","number"]],[true,"mono_wasm_write_managed_pointer_unsafe","void",["number","number"]],[true,"mono_wasm_copy_managed_pointer","void",["number","number"]],[true,"mono_wasm_i52_to_f64","number",["number","number"]],[true,"mono_wasm_u52_to_f64","number",["number","number"]],[true,"mono_wasm_f64_to_i52","number",["number","number"]],[true,"mono_wasm_f64_to_u52","number",["number","number"]]],M={};function I(){const e=!!f;for(const t of R){const n=M,[r,s,i,a,c]=t;if(r||e)n[s]=function(...e){const t=o.cwrap(s,i,a,c);return n[s]=t,t(...e)};else{const e=o.cwrap(s,i,a,c);n[s]=e}}}function D(e,t,n){const r=C(e,t,n);let o="",s=0,i=0,a=0,c=0,u=0,l=0;const f=16777215,_=262143,d=4095,m=63,g=18,w=12,h=6,p=0;for(;s=r.read(),i=r.read(),a=r.read(),null!==s;)null===i&&(i=0,u+=1),null===a&&(a=0,u+=1),l=s<<16|i<<8|a<<0,c=(l&f)>>g,o+=U[c],c=(l&_)>>w,o+=U[c],u<2&&(c=(l&d)>>6,o+=U[c]),2===u?o+="==":1===u?o+="=":(c=(l&m)>>0,o+=U[c]);return o}const U=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"];function C(e,t,n){let r="number"===typeof t?t:0,o;o="number"===typeof n?r+n:e.length-r;const s={read:function(){if(r>=o)return null;const t=e[r];return r+=1,t}};return Object.defineProperty(s,"eof",{get:function(){return r>=o},configurable:true,enumerable:true}),s}const P=new Map;P.remove=function(e){const t=this.get(e);return this.delete(e),t};let W={},F=0,B=-1,V,H,z;function mono_wasm_runtime_ready(){if(s.mono_wasm_runtime_is_ready=b.mono_wasm_runtime_is_ready=true,F=0,W={},B=-1,globalThis.dotnetDebugger)debugger;else console.debug("mono_wasm_runtime_ready","fe00e07a-5519-4dfe-b35a-f867dbaf2e28")}function mono_wasm_fire_debugger_agent_message(){debugger}function L(e,t,n,r){const s=undefined,i=undefined,a={res_ok:e,res:{id:t,value:D(new Uint8Array(o.HEAPU8.buffer,n,r))}};P.has(t)&&console.warn(`MONO_WASM: Adding an id (${t}) that already exists in commands_received`),P.set(t,a)}function J(e){e.length>B&&(V&&o._free(V),B=Math.max(e.length,B,256),V=o._malloc(B));const t=atob(e);for(let e=0;e{const t=setInterval((()=>{1==b.waitForDebugger&&(clearInterval(t),e())}),100)}))}function te(){-1==b.waitForDebugger&&(b.waitForDebugger=1),M.mono_wasm_set_is_debugger_attached(true)}function ne(e,t){H=o.UTF8ToString(e).concat(".dll"),z=t,console.assert(true,`Adding an entrypoint breakpoint ${H} at method token ${z}`);debugger}function re(e,t){if(e.startsWith("dotnet:array:")){let e;if(void 0===t.items)return e=t.map((e=>e.value)),e;if(void 0===t.dimensionsDetails||1===t.dimensionsDetails.length)return e=t.items.map((e=>e.value)),e}const n={};return Object.keys(t).forEach((e=>{const r=t[e];void 0!==r.get?Object.defineProperty(n,r.name,{get(){return G(r.get.id,r.get.commandSet,r.get.command,r.get.buffer)},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):void 0!==r.set?Object.defineProperty(n,r.name,{get(){return r.value},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):n[r.name]=r.value})),n}function oe(e){if(void 0!=e.arguments&&!Array.isArray(e.arguments))throw new Error(`"arguments" should be an array, but was ${e.arguments}`);const t=e.objectId,n=e.details;let r={};if(t.startsWith("dotnet:cfo_res:")){if(!(t in W))throw new Error(`Unknown object id ${t}`);r=W[t]}else r=re(t,n);const o=void 0!=e.arguments?e.arguments.map((e=>JSON.stringify(e.value))):[],s=`const fn = ${e.functionDeclaration}; return fn.apply(proxy, [${o}]);`,i=undefined,a=new Function("proxy",s)(r);if(void 0===a)return{type:"undefined"};if(Object(a)!==a)return"object"==typeof a&&null==a?{type:typeof a,subtype:`${a}`,value:null}:{type:typeof a,description:`${a}`,value:`${a}`};if(e.returnByValue&&void 0==a.subtype)return{type:"object",value:a};if(Object.getPrototypeOf(a)==Array.prototype){const e=ae(a);return{type:"object",subtype:"array",className:"Array",description:`Array(${a.length})`,objectId:e}}if(void 0!==a.value||void 0!==a.subtype)return a;if(a==r)return{type:"object",className:"Object",description:"Object",objectId:t};const c=undefined;return{type:"object",className:"Object",description:"Object",objectId:ae(a)}}function se(e,t){if(!(e in W))throw new Error(`Could not find any object with id ${e}`);const n=W[e],r=Object.getOwnPropertyDescriptors(n);t.accessorPropertiesOnly&&Object.keys(r).forEach((e=>{void 0===r[e].get&&Reflect.deleteProperty(r,e)}));const o=[];return Object.keys(r).forEach((e=>{let t;const n=r[e];t="object"==typeof n.value?Object.assign({name:e},n):void 0!==n.value?{name:e,value:Object.assign({type:typeof n.value,description:""+n.value},n)}:void 0!==n.get?{name:e,get:{className:"Function",description:`get ${e} () {}`,type:"function"}}:{name:e,value:{type:"symbol",value:"",description:""}},o.push(t)})),{__value_as_json_string__:JSON.stringify(o)}}function ie(e,t={}){return se(`dotnet:cfo_res:${e}`,t)}function ae(e){const t="dotnet:cfo_res:"+F++;return W[t]=e,t}function ce(e){e in W&&delete W[e]}function ue(e,t){const n=o.UTF8ToString(t);if(s.logging&&"function"===typeof s.logging.debugger)return s.logging.debugger(e,n),void 0}let le=0;function fe(e){const t=1===M.mono_wasm_load_icu_data(e);return t&&le++,t}function _e(e){return M.mono_wasm_get_icudt_name(e)}function de(){const e=b.config;let t=false;if(e.globalizationMode||(e.globalizationMode="auto"),"invariant"===e.globalizationMode&&(t=true),!t)if(le>0)b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode");else{if("icu"===e.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives were loaded";throw o.printErr(`MONO_WASM: ERROR: ${e}`),new Error(e)}b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode"),t=true}t&&M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1"),M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY","1")}function me(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="System.Runtime.InteropServices.JavaScript.JavaScriptExports::StopProfile"),"sendTo"in e||(e.sendTo="Interop/Runtime::DumpAotProfileData");const t="aot:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_aot",null,["string"],[t])}function ge(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="WebAssembly.Runtime::StopProfile"),"sendTo"in e||(e.sendTo="WebAssembly.Runtime::DumpCoverageProfileData");const t="coverage:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_coverage",null,["string"],[t])}const we=new Map,he=new Map;let pe=0;function be(e){if(we.has(e))return we.get(e);const t=M.mono_wasm_assembly_load(e);return we.set(e,t),t}function ye(e,t,n){let r=he.get(e);r||he.set(e,r=new Map);let o=r.get(t);return o||(o=new Map,r.set(t,o)),o.get(n)}function ve(e,t,n,r){const o=he.get(e);if(!o)throw new Error("internal error");const s=o.get(t);if(!s)throw new Error("internal error");s.set(n,r)}function Ee(e,t,n){pe||(pe=M.mono_wasm_get_corlib());let r=ye(pe,e,t);if(void 0!==r)return r;if(r=M.mono_wasm_assembly_find_class(pe,e,t),n&&!r)throw new Error(`Failed to find corlib class ${e}.${t}`);return ve(pe,e,t,r),r}
+//! Licensed to the .NET Foundation under one or more agreements.
+const Ae=new Map,Se=[];function Oe(e){try{if(0==Ae.size)return e;const t=e;for(let n=0;n{const n=t.find((e=>"object"==typeof e&&void 0!==e.replaceSection));if(void 0===n)return e;const r=n.funcNum,o=n.replaceSection,s=Ae.get(Number(r));return void 0===s?e:e.replace(o,`${s} (${o})`)}));if(r!==t)return r}return t}catch(t){return console.debug(`MONO_WASM: failed to symbolicate: ${t}`),e}}function xe(e){let t=e;return t instanceof Error||(t=new Error(t)),Oe(t.stack)}function je(e,t,n,r,i){const a=o.UTF8ToString(n),c=!!r,u=o.UTF8ToString(e),l=i,f=o.UTF8ToString(t),_=`[MONO] ${a}`;if(s.logging&&"function"===typeof s.logging.trace)return s.logging.trace(u,f,_,c,l),void 0;switch(f){case"critical":case"error":console.error(xe(_));break;case"warning":console.warn(_);break;case"message":console.log(_);break;case"info":console.info(_);break;case"debug":console.debug(_);break;default:console.log(_);break}}let $e;function Ne(e,t,n){const r={log:t.log,error:t.error},o=t;function s(t,n,o){return function(...s){try{let r=s[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"===typeof r)r=r.toString();else if("string"!==typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}"string"===typeof r&&"main"!==e&&(r=`[${e}] ${r}`),n(o?JSON.stringify({method:t,payload:r,arguments:s}):[t+r,...s.slice(1)])}catch(e){r.error(`proxyConsole failed: ${e}`)}}}const i=["debug","trace","warn","info","error"];for(const e of i)"function"!==typeof o[e]&&(o[e]=s(`console.${e}: `,t.log,false));const a=`${n}/console`.replace("https://","wss://").replace("http://","ws://");$e=new WebSocket(a),$e.addEventListener("open",(()=>{r.log(`browser: [${e}] Console websocket connected.`)})),$e.addEventListener("error",(t=>{r.error(`[${e}] websocket error: ${t}`,t)})),$e.addEventListener("close",(t=>{r.error(`[${e}] websocket closed: ${t}`,t)}));const c=e=>{$e.readyState===WebSocket.OPEN?$e.send(e):r.log(e)};for(const e of["log",...i])o[e]=s(`console.${e}`,c,true)}function ke(e){if(!b.mono_wasm_symbols_are_ready){b.mono_wasm_symbols_are_ready=true;try{const t=undefined;o.FS_readFile(e,{flags:"r",encoding:"utf8"}).split(/[\r\n]/).forEach((e=>{const t=e.split(/:/);t.length<2||(t[1]=t.splice(1).join(":"),Ae.set(Number(t[0]),t[1]))}))}catch(t){return 44==t.errno||console.log(`MONO_WASM: Error loading symbol file ${e}: ${JSON.stringify(t)}`),void 0}}}async function Te(e,t){try{const n=await Re(e,t);return De(n),n}catch(e){return e instanceof b.ExitStatus?e.status:(De(1,e),1)}}async function Re(e,t){Ic(e,t),-1==b.waitForDebugger&&(console.log("MONO_WASM: waiting for debugger..."),await ee());const n=Me(e);return b.javaScriptExports.call_entry_point(n,t)}function Me(e){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const t=be(e);if(!t)throw new Error("Could not find assembly: "+e);let n=0;1==b.waitForDebugger&&(n=1);const r=M.mono_wasm_assembly_get_entry_point(t,n);if(!r)throw new Error("Could not find entry point for assembly: "+e);return r}function Ie(e){bc(e,false),De(1,e)}function De(e,t){if(b.config.asyncFlushOnExit&&0===e)throw(async()=>{try{await Ue()}finally{Ce(e,t)}})(),b.ExitStatus?new b.ExitStatus(e):t||new Error("Stop with exit code "+e);Ce(e,t)}async function Ue(){try{const e=await import("process"),t=e=>new Promise(((t,n)=>{e.on("error",(e=>n(e))),e.write("",(function(){t()}))})),n=t(e.stderr),r=t(e.stdout);await Promise.all([r,n])}catch(e){console.error(`flushing std* streams failed: ${e}`)}}function Ce(e,t){if(b.ExitStatus&&(!t||t instanceof b.ExitStatus?t=new b.ExitStatus(e):t instanceof Error?o.printErr(s.mono_wasm_stringify_as_error_with_stack(t)):"string"==typeof t?o.printErr(t):o.printErr(JSON.stringify(t))),We(e,t),Pe(e),0!==e||!u){if(!b.quit)throw t;b.quit(e,t)}}function Pe(e){if(u&&b.config.appendElementOnExit){const t=document.createElement("label");t.id="tests_done",e&&(t.style.background="red"),t.innerHTML=e.toString(),document.body.appendChild(t)}}function We(e,t){if(b.config.logExitCode)if(0!=e&&t&&(t instanceof Error?console.error(xe(t)):"string"==typeof t?console.error(t):console.error(JSON.stringify(t))),$e){const t=()=>{0==$e.bufferedAmount?console.log("WASM EXIT "+e):setTimeout(t,100)};t()}else console.log("WASM EXIT "+e)}Se.push(/at (?[^:()]+:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)((?![^)a-fA-F\d])|$)/),Se.push(/(?:WASM \[[\da-zA-Z]+\], (?function #(?[\d]+) \(''\)))/),Se.push(/(?[a-z]+:\/\/[^ )]*:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)/),Se.push(/(?<[^ >]+>[.:]wasm-function\[(?[0-9]+)\])/);const Fe="function"===typeof globalThis.WeakRef;function Be(e){return Fe?new WeakRef(e):{deref:()=>e}}const Ve="function"===typeof globalThis.FinalizationRegistry;let He;const ze=[],Le=[];let Je=1;const qe=new Map;Ve&&(He=new globalThis.FinalizationRegistry(rt));const Ge=Symbol.for("wasm js_owned_gc_handle"),Ye=Symbol.for("wasm cs_owned_js_handle");function Ze(e){return 0!==e&&e!==x?ze[e]:null}function Xe(e){return 0!==e&&e!==x?Ze(e):null}function Qe(e){if(e[Ye])return e[Ye];const t=Le.length?Le.pop():Je++;return ze[t]=e,Object.isExtensible(e)&&(e[Ye]=t),t}function Ke(e){const t=ze[e];if("undefined"!==typeof t&&null!==t){if(globalThis===t)return;"undefined"!==typeof t[Ye]&&(t[Ye]=void 0),ze[e]=void 0,Le.push(e)}}function et(e,t){e[Ge]=t,Ve&&He.register(e,t,e);const n=Be(e);qe.set(t,n)}function tt(e,t){e&&(t=e[Ge],e[Ge]=0,Ve&&He.unregister(e)),0!==t&&qe.delete(t)&&b.javaScriptExports.release_js_owned_object_by_gc_handle(t)}function nt(e){const t=e[Ge];if(!(0!=t))throw new Error("Assert failed: ObjectDisposedException");return t}function rt(e){tt(null,e)}function ot(e){if(!e)return null;const t=qe.get(e);return t?t.deref():null}const st=Symbol.for("wasm promise_control");function it(e,t){let n=null;const r=new Promise((function(r,o){n={isDone:false,promise:null,resolve:t=>{n.isDone||(n.isDone=true,r(t),e&&e())},reject:e=>{n.isDone||(n.isDone=true,o(e),t&&t())}}}));n.promise=r;const o=r;return o[st]=n,{promise:o,promise_control:n}}function at(e){return e[st]}function ct(e){return void 0!==e[st]}function ut(e){if(!ct(e))throw new Error("Assert failed: Promise is not controllable")}const lt=("object"===typeof Promise||"function"===typeof Promise)&&"function"===typeof Promise.resolve;function ft(e){return Promise.resolve(e)===e||("object"===typeof e||"function"===typeof e)&&"function"===typeof e.then}function _t(e){const{promise:t,promise_control:n}=it(),r=undefined;return e().then((e=>n.resolve(e))).catch((e=>n.reject(e))),t}function dt(e){const t=ot(e);if(!t)return;const n=t.promise;if(!!!n)throw new Error(`Assert failed: Expected Promise for GCHandle ${e}`);ut(n);const r=undefined;at(n).reject("OperationCanceledException")}const mt=[],gt=32768;let wt,ht,pt=null;function bt(){wt||(wt=o._malloc(gt),ht=wt)}const yt="undefined"!==typeof BigInt&&"undefined"!==typeof BigInt64Array;function vt(){bt(),mt.push(ht)}function Et(){if(!mt.length)throw new Error("No temp frames have been created at this point");ht=mt.pop()}function At(e,t,n){if(!Number.isSafeInteger(e))throw new Error(`Assert failed: Value is not an integer: ${e} (${typeof e})`);if(!(e>=t&&e<=n))throw new Error(`Assert failed: Overflow: value ${e} is out of ${t} ${n} range`)}function St(e,t){o.HEAP8.fill(0,e,t+e)}function Ot(e,t){const n=!!t;"number"===typeof t&&At(t,0,1),o.HEAP32[e>>>2]=n?1:0}function xt(e,t){At(t,0,255),o.HEAPU8[e]=t}function jt(e,t){At(t,0,65535),o.HEAPU16[e>>>1]=t}function $t(e,t){o.HEAPU32[e>>>2]=t}function Nt(e,t){At(t,0,4294967295),o.HEAPU32[e>>>2]=t}function kt(e,t){At(t,-128,127),o.HEAP8[e]=t}function Tt(e,t){At(t,-32768,32767),o.HEAP16[e>>>1]=t}function Rt(e,t){o.HEAP32[e>>>2]=t}function Mt(e,t){At(t,-2147483648,2147483647),o.HEAP32[e>>>2]=t}function It(e){if(0!==e)switch(e){case 1:throw new Error("value was not an integer");case 2:throw new Error("value out of range");default:throw new Error("unknown internal error")}}function Dt(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);const n=undefined;It(M.mono_wasm_f64_to_i52(e,t))}function Ut(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);if(!(t>=0))throw new Error("Assert failed: Can't convert negative Number into UInt64");const n=undefined;It(M.mono_wasm_f64_to_u52(e,t))}function Ct(e,t){if(!yt)throw new Error("Assert failed: BigInt is not supported.");if(!("bigint"===typeof t))throw new Error(`Assert failed: Value is not an bigint: ${t} (${typeof t})`);if(!(t>=Kt&&t<=Qt))throw new Error(`Assert failed: Overflow: value ${t} is out of ${Kt} ${Qt} range`);pt[e>>>3]=t}function Pt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF32[e>>>2]=t}function Wt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF64[e>>>3]=t}function Ft(e){return!!o.HEAP32[e>>>2]}function Bt(e){return o.HEAPU8[e]}function Vt(e){return o.HEAPU16[e>>>1]}function Ht(e){return o.HEAPU32[e>>>2]}function zt(e){return o.HEAP8[e]}function Lt(e){return o.HEAP16[e>>>1]}function Jt(e){return o.HEAP32[e>>>2]}function qt(e){const t=M.mono_wasm_i52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Gt(e){const t=M.mono_wasm_u52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Yt(e){if(!yt)throw new Error("Assert failed: BigInt is not supported.");return pt[e>>>3]}function Zt(e){return o.HEAPF32[e>>>2]}function Xt(e){return o.HEAPF64[e>>>3]}let Qt,Kt;function en(e){yt&&(Qt=BigInt("9223372036854775807"),Kt=BigInt("-9223372036854775808"),pt=new BigInt64Array(e))}function tn(e){const t=o._malloc(e.length),n=undefined;return new Uint8Array(o.HEAPU8.buffer,t,e.length).set(e),t}const nn=8192;let rn=null,on=null,sn=0;const an=[],cn=[];function un(e,t){if(e<=0)throw new Error("capacity >= 1");const n=4*(e|=0),r=o._malloc(n);if(r%4!==0)throw new Error("Malloc returned an unaligned offset");return St(r,n),new WasmRootBufferImpl(r,e,true,t)}function ln(e){let t;if(!e)throw new Error("address must be a location in the native heap");return cn.length>0?(t=cn.pop(),t._set_address(e)):t=new wn(e),t}function fn(e){let t;if(an.length>0)t=an.pop();else{const e=mn(),n=undefined;t=new gn(rn,e)}if(void 0!==e){if("number"!==typeof e)throw new Error("value must be an address in the managed heap");t.set(e)}else t.set(0);return t}function _n(...e){for(let t=0;t>>2,this.__count=t,this.length=t,this.__handle=M.mono_wasm_register_root(e,o,r||"noname"),this.__ownsAllocation=n}_throw_index_out_of_range(){throw new Error("index out of range")}_check_in_range(e){(e>=this.__count||e<0)&&this._throw_index_out_of_range()}get_address(e){return this._check_in_range(e),this.__offset+4*e}get_address_32(e){return this._check_in_range(e),this.__offset32+e}get(e){this._check_in_range(e);const t=this.get_address_32(e);return o.HEAPU32[t]}set(e,t){const n=this.get_address(e);return M.mono_wasm_write_managed_pointer_unsafe(n,t),t}copy_value_from_address(e,t){const n=this.get_address(e);M.mono_wasm_copy_managed_pointer(n,t)}_unsafe_get(e){return o.HEAPU32[this.__offset32+e]}_unsafe_set(e,t){const n=this.__offset+e;M.mono_wasm_write_managed_pointer_unsafe(n,t)}clear(){this.__offset&&St(this.__offset,4*this.__count)}release(){this.__offset&&this.__ownsAllocation&&(M.mono_wasm_deregister_root(this.__offset),St(this.__offset,4*this.__count),o._free(this.__offset)),this.__handle=this.__offset=this.__count=this.__offset32=0}toString(){return`[root buffer @${this.get_address(0)}, size ${this.__count} ]`}}class gn{constructor(e,t){this.__buffer=e,this.__index=t}get_address(){return this.__buffer.get_address(this.__index)}get_address_32(){return this.__buffer.get_address_32(this.__index)}get address(){return this.__buffer.get_address(this.__index)}get(){const e=undefined;return this.__buffer._unsafe_get(this.__index)}set(e){const t=this.__buffer.get_address(this.__index);return M.mono_wasm_write_managed_pointer_unsafe(t,e),e}copy_from(e){const t=e.address,n=this.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){if(!this.__buffer)throw new Error("No buffer");const e=128;an.length>e?(dn(this.__index),this.__buffer=null,this.__index=0):(this.set(0),an.push(this))}toString(){return`[root @${this.address}]`}}class wn{constructor(e){this.__external_address=0,this.__external_address_32=0,this._set_address(e)}_set_address(e){this.__external_address=e,this.__external_address_32=e>>>2}get address(){return this.__external_address}get_address(){return this.__external_address}get_address_32(){return this.__external_address_32}get(){const e=undefined;return o.HEAPU32[this.__external_address_32]}set(e){return M.mono_wasm_write_managed_pointer_unsafe(this.__external_address,e),e}copy_from(e){const t=e.address,n=this.__external_address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.__external_address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){const e=128;cn.length=r&&(vr=null),vr||(vr=un(r,"interned strings"),Er=0);const o=vr,s=Er++;if(n&&(M.mono_wasm_intern_string_ref(t.address),!t.value))throw new Error("mono_wasm_intern_string_ref produced a null pointer");br.set(e,t.value),pr.set(t.value,e),0!==e.length||yr||(yr=t.value),o.copy_value_from_address(s,t.address)}function Nr(e,t){let n;if("symbol"===typeof e?(n=e.description,"string"!==typeof n&&(n=Symbol.keyFor(e)),"string"!==typeof n&&(n="")):"string"===typeof e&&(n=e),"string"!==typeof n)throw new Error(`Argument to js_string_to_mono_string_interned must be a string but was ${e}`);if(0===n.length&&yr)return t.set(yr),void 0;const r=br.get(n);if(r)return t.set(r),void 0;Tr(n,t),$r(n,t,true)}function kr(e,t){if(t.clear(),null!==e)if("symbol"===typeof e)Nr(e,t);else{if("string"!==typeof e)throw new Error("Expected string argument, got "+typeof e);if(0===e.length)Nr(e,t);else{if(e.length<=256){const n=br.get(e);if(n)return t.set(n),void 0}Tr(e,t)}}}function Tr(e,t){const n=o._malloc(2*(e.length+1)),r=n>>>1|0;for(let t=0;t{const n=On(e,0),a=On(e,1),c=On(e,2),u=On(e,3),l=On(e,4);try{let e,n,f;o&&(e=o(c)),s&&(n=s(u)),i&&(f=i(l));const _=t(e,n,f);r&&r(a,_)}catch(e){eo(n,e)}};a[yn]=true;const c=undefined;cr(e,Qe(a)),Cn(e,wr.Function)}class Qr{constructor(e){this.promise=e}dispose(){tt(this,0)}get isDisposed(){return 0===this[Ge]}}function Kr(e,t,n,r){if(null===t||void 0===t)return Cn(e,wr.None),void 0;if(!ft(t))throw new Error("Assert failed: Value is not a Promise");const o=b.javaScriptExports.create_task_callback();lr(e,o),Cn(e,wr.Task);const s=new Qr(t);et(s,o),t.then((e=>{b.javaScriptExports.complete_task(o,null,e,r||no),tt(s,o)})).catch((e=>{b.javaScriptExports.complete_task(o,e,null,void 0),tt(s,o)}))}function eo(e,t){if(null===t||void 0===t)Cn(e,wr.None);else if(t instanceof ManagedError){Cn(e,wr.Exception);const n=undefined;lr(e,nt(t))}else{if(!("object"===typeof t||"string"===typeof t))throw new Error("Assert failed: Value is not an Error "+typeof t);Cn(e,wr.JSException);const n=undefined;Yr(e,t.toString());const r=t[Ye];if(r)cr(e,r);else{const n=undefined;cr(e,Qe(t))}}}function to(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{if(!(void 0===t[Ge]))throw new Error("Assert failed: JSObject proxy of ManagedObject proxy is not supported");if(!("function"===typeof t||"object"===typeof t))throw new Error(`Assert failed: JSObject proxy of ${typeof t} is not supported`);Cn(e,wr.JSObject);const n=undefined;cr(e,Qe(t))}}function no(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{const n=t[Ge],r=typeof t;if(void 0===n)if("string"===r||"symbol"===r)Cn(e,wr.String),Yr(e,t);else if("number"===r)Cn(e,wr.Double),sr(e,t);else{if("bigint"===r)throw new Error("NotImplementedException: bigint");if("boolean"===r)Cn(e,wr.Boolean),Zn(e,t);else if(t instanceof Date)Cn(e,wr.DateTime),or(e,t);else if(t instanceof Error)eo(e,t);else if(t instanceof Uint8Array)oo(e,t,wr.Byte);else if(t instanceof Float64Array)oo(e,t,wr.Double);else if(t instanceof Int32Array)oo(e,t,wr.Int32);else if(Array.isArray(t))oo(e,t,wr.Object);else{if(t instanceof Int16Array||t instanceof Int8Array||t instanceof Uint8ClampedArray||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Float32Array)throw new Error("NotImplementedException: TypedArray");if(ft(t))Kr(e,t);else{if(t instanceof Span)throw new Error("NotImplementedException: Span");if("object"!=r)throw new Error(`JSObject proxy is not supported for ${r} ${t}`);{const n=Qe(t);Cn(e,wr.JSObject),cr(e,n)}}}}else{if(nt(t),t instanceof ArraySegment)throw new Error("NotImplementedException: ArraySegment");if(t instanceof ManagedError)Cn(e,wr.Exception),lr(e,n);else{if(!(t instanceof ManagedObject))throw new Error("NotImplementedException "+r);Cn(e,wr.Object),lr(e,n)}}}}function ro(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=undefined;oo(e,t,kn(n))}function oo(e,t,n){if(null===t||void 0===t)Cn(e,wr.None);else{const r=mr(n);if(!(-1!=r))throw new Error(`Assert failed: Element type ${wr[n]} not supported`);const s=t.length,i=r*s,a=o._malloc(i);if(n==wr.String){if(!Array.isArray(t))throw new Error("Assert failed: Value is not an Array");St(a,i),M.mono_wasm_register_root(a,i,"marshal_array_to_cs");for(let e=0;e>2,(a>>2)+s).set(t)}else{if(n!=wr.Double)throw new Error("not implemented");{if(!(Array.isArray(t)||t instanceof Float64Array))throw new Error("Assert failed: Value is not an Array or Float64Array");const e=undefined;o.HEAPF64.subarray(a>>3,(a>>3)+s).set(t)}}tr(e,a),Cn(e,wr.Array),Pn(e,n),dr(e,t.length)}}function so(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");if(!!t.isDisposed)throw new Error("Assert failed: ObjectDisposedException");ao(n,t._viewType),Cn(e,wr.Span),tr(e,t._pointer),dr(e,t.length)}function io(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=nt(t);if(!r)throw new Error("Assert failed: Only roundtrip of ArraySegment instance created by C#");ao(n,t._viewType),Cn(e,wr.ArraySegment),tr(e,t._pointer),dr(e,t.length),lr(e,r)}function ao(e,t){const n=kn(e);if(n==wr.Byte){if(!(0==t))throw new Error("Assert failed: Expected MemoryViewType.Byte")}else if(n==wr.Int32){if(!(1==t))throw new Error("Assert failed: Expected MemoryViewType.Int32")}else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);if(!(2==t))throw new Error("Assert failed: Expected MemoryViewType.Double")}}function co(){0==hn.size&&(hn.set(wr.Array,ko),hn.set(wr.Span,Ro),hn.set(wr.ArraySegment,Mo),hn.set(wr.Boolean,lo),hn.set(wr.Byte,fo),hn.set(wr.Char,_o),hn.set(wr.Int16,mo),hn.set(wr.Int32,go),hn.set(wr.Int52,wo),hn.set(wr.BigInt64,ho),hn.set(wr.Single,po),hn.set(wr.IntPtr,yo),hn.set(wr.Double,bo),hn.set(wr.String,xo),hn.set(wr.Exception,jo),hn.set(wr.JSException,jo),hn.set(wr.JSObject,$o),hn.set(wr.Object,No),hn.set(wr.DateTime,Eo),hn.set(wr.DateTimeOffset,Eo),hn.set(wr.Task,So),hn.set(wr.Action,Ao),hn.set(wr.Function,Ao),hn.set(wr.None,vo),hn.set(wr.Void,vo),hn.set(wr.Discard,vo))}function uo(e,t,n,r,o,s){let i="",a="",c="";const u="converter"+t;let l="null",f="null",_="null",d="null",m=$n(e);if(m===wr.None||m===wr.Void)return{converters:i,call_body:c,marshaler_type:m};const g=Nn(e);if(g!==wr.None){const e=hn.get(g);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${g} at ${t}`);m!=wr.Nullable?(d="converter"+t+"_res",i+=", "+d,a+=" "+wr[g],s[d]=e):m=g}const w=kn(e);if(w!==wr.None){const e=pn.get(w);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${w} at ${t}`);l="converter"+t+"_arg1",i+=", "+l,a+=" "+wr[w],s[l]=e}const h=Tn(e);if(h!==wr.None){const e=pn.get(h);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${h} at ${t}`);f="converter"+t+"_arg2",i+=", "+f,a+=" "+wr[h],s[f]=e}const p=Rn(e);if(p!==wr.None){const e=pn.get(p);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${p} at ${t}`);_="converter"+t+"_arg3",i+=", "+_,a+=" "+wr[p],s[_]=e}const b=hn.get(m);if(!(b&&"function"===typeof b))throw new Error(`Assert failed: Unknow converter for type ${m} at ${t} `);return i+=", "+u,a+=" "+wr[m],s[u]=b,c=m==wr.Task?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}); // ${a} \n`:m==wr.Action||m==wr.Function?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}, ${l}, ${f}, ${_}); // ${a} \n`:` const ${o} = ${u}(args + ${n}, signature + ${r}); // ${a} \n`,{converters:i,call_body:c,marshaler_type:m}}function lo(e){const t=undefined;return Dn(e)==wr.None?null:Wn(e)}function fo(e){const t=undefined;return Dn(e)==wr.None?null:Fn(e)}function _o(e){const t=undefined;return Dn(e)==wr.None?null:Bn(e)}function mo(e){const t=undefined;return Dn(e)==wr.None?null:Vn(e)}function go(e){const t=undefined;return Dn(e)==wr.None?null:Hn(e)}function wo(e){const t=undefined;return Dn(e)==wr.None?null:Ln(e)}function ho(e){const t=undefined;return Dn(e)==wr.None?null:Jn(e)}function po(e){const t=undefined;return Dn(e)==wr.None?null:Gn(e)}function bo(e){const t=undefined;return Dn(e)==wr.None?null:Yn(e)}function yo(e){const t=undefined;return Dn(e)==wr.None?null:zn(e)}function vo(){return null}function Eo(e){const t=undefined;return Dn(e)===wr.None?null:qn(e)}function Ao(e,t,n,r,o,s){const i=undefined;if(Dn(e)===wr.None)return null;const a=ur(e);let c=ot(a);return null!==c&&void 0!==c||(c=(e,t,i)=>b.javaScriptExports.call_delegate(a,e,t,i,n,r,o,s),et(c,a)),c}function So(e,t,n){const r=Dn(e);if(r===wr.None)return null;if(r!==wr.Task){if(n||(n=hn.get(r)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[r]} `);const t=n(e);return new Promise((e=>e(t)))}const o=ar(e);if(0==o)return new Promise((e=>e(void 0)));const s=Ze(o);if(!!!s)throw new Error(`Assert failed: ERR28: promise not found for js_handle: ${o} `);ut(s);const i=at(s),a=i.resolve;return i.resolve=e=>{const t=Dn(e);if(t===wr.None)return a(null),void 0;if(n||(n=hn.get(t)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[t]}`);const r=n(e);a(r)},s}function Oo(e){const t=On(e,0),n=On(e,1),r=On(e,2),o=On(e,3),s=Dn(t),i=Dn(o),a=ar(r);if(0===a){const{promise:e,promise_control:r}=it(),a=undefined;if(cr(n,Qe(e)),s!==wr.None){const e=jo(t);r.reject(e)}else if(i!==wr.Task){const e=hn.get(i);if(!e)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[i]} `);const t=e(o);r.resolve(t)}}else{const e=Ze(a);if(!!!e)throw new Error(`Assert failed: ERR25: promise not found for js_handle: ${a} `);ut(e);const n=at(e);if(s!==wr.None){const e=jo(t);n.reject(e)}else i!==wr.Task&&n.resolve(o)}Cn(n,wr.Task),Cn(t,wr.None)}function xo(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=fr(e);try{const e=undefined;return xr(n)}finally{n.release()}}function jo(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSException){const t=undefined,n=undefined;return Ze(ar(e))}const n=ur(e);let r=ot(n);if(null===r||void 0===r){const t=xo(e);r=new ManagedError(t),et(r,n)}return r}function $o(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=undefined,r=undefined;return Ze(ar(e))}function No(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSObject){const t=undefined,n=undefined;return Ze(ar(e))}if(t==wr.Array){const t=undefined;return To(e,Un(e))}if(t==wr.Object){const t=ur(e);if(0===t)return null;let n=ot(t);return n||(n=new ManagedObject,et(n,t)),n}const n=hn.get(t);if(!n)throw new Error(`Assert failed: Unknow converter for type ${wr[t]}`);return n(e)}function ko(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=undefined;return To(e,kn(t))}function To(e,t){const n=undefined;if(Dn(e)==wr.None)return null;const r=undefined;if(!(-1!=mr(t)))throw new Error(`Assert failed: Element type ${wr[t]} not supported`);const s=zn(e),i=_r(e);let a=null;if(t==wr.String){a=new Array(i);for(let e=0;e>2,(s>>2)+i).slice()}else{if(t!=wr.Double)throw new Error(`NotImplementedException ${wr[t]} `);{const e=undefined;a=o.HEAPF64.subarray(s>>3,(s>>3)+i).slice()}}return o._free(s),a}function Ro(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new Span(r,o,0);else if(n==wr.Int32)s=new Span(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new Span(r,o,2)}return s}function Mo(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new ArraySegment(r,o,0);else if(n==wr.Int32)s=new ArraySegment(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new ArraySegment(r,o,2)}const i=undefined;return et(s,ur(e)),s}let Io,Do;const Uo={};function Co(e){Io=e.mono,Do=e.binding}const Po=Symbol.for("wasm type");function Wo(e){return new Promise((t=>setTimeout(t,e)))}const Fo=it(),Bo=it();let Vo=0,Ho=0,zo=0,Lo=0;const Jo=[],qo=Object.create(null);let Go=0,Yo;const Zo={"js-module-threads":true},Xo={dotnetwasm:true},Qo={"js-module-threads":true,dotnetwasm:true};function Ko(e){var t;const n=null===(t=b.config.assets)||void 0===t?void 0:t.find((t=>t.behavior==e));if(!n)throw new Error(`Assert failed: Can't find asset for ${e}`);return n.resolvedUrl||(n.resolvedUrl=os(n,"")),n}async function es(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_download_assets"),b.maxParallelDownloads=b.config.maxParallelDownloads||b.maxParallelDownloads;try{const e=[];for(const t of b.config.assets){const n=t;if(Qo[n.behavior]||Lo++,!Zo[n.behavior]){const t=Xo[n.behavior];if(zo++,n.pendingDownload){n.pendingDownloadInternal=n.pendingDownload;const r=async()=>{const e=await n.pendingDownloadInternal.response;return t||(n.buffer=await e.arrayBuffer()),++Vo,{asset:n,buffer:n.buffer}};e.push(r())}else{const r=async()=>(n.buffer=await ts(n,!t),{asset:n,buffer:n.buffer});e.push(r())}}}Bo.promise_control.resolve();const t=[];for(const n of e)t.push((async()=>{const e=await n,t=e.asset;if(e.buffer){if(!Qo[t.behavior]){const n=t.pendingDownloadInternal.url,r=new Uint8Array(t.buffer);t.pendingDownloadInternal=null,t.pendingDownload=null,t.buffer=null,e.buffer=null,await lc.promise,is(t,n,r)}}else{const e=undefined;if(Xo[t.behavior])Xo[t.behavior]&&++Vo;else{if(!t.isOptional)throw new Error("Assert failed: Expected asset to have the downloaded buffer");Zo[t.behavior]||zo--,Qo[t.behavior]||Lo--}}})());Promise.all(t).then((()=>{Fo.promise_control.resolve()})).catch((e=>{o.printErr("MONO_WASM: Error in mono_download_assets: "+e),bc(e,true)}))}catch(e){throw o.printErr("MONO_WASM: Error in mono_download_assets: "+e),e}}async function ts(e,t){try{return await ns(e,t)}catch(n){if(c||a)throw n;if(e.pendingDownload&&e.pendingDownloadInternal==e.pendingDownload)throw n;if(e.resolvedUrl&&-1!=e.resolvedUrl.indexOf("file://"))throw n;if(n&&404==n.status)throw n;e.pendingDownloadInternal=void 0,await Bo.promise;try{return await ns(e,t)}catch(n){return e.pendingDownloadInternal=void 0,await Wo(100),await ns(e,t)}}}async function ns(e,t){for(;Yo;)await Yo.promise;try{++Go,Go==b.maxParallelDownloads&&(b.diagnosticTracing&&console.debug("MONO_WASM: Throttling further parallel downloads"),Yo=it());const n=await rs(e);if(!t||!n)return;const r=await n.arrayBuffer();return++Vo,r}finally{if(--Go,Yo&&Go==b.maxParallelDownloads-1){b.diagnosticTracing&&console.debug("MONO_WASM: Resuming more parallel downloads");const e=Yo;Yo=void 0,e.promise_control.resolve()}}}async function rs(e){if(e.buffer){const t=e.buffer;return e.buffer=null,e.pendingDownloadInternal={url:"undefined://"+e.name,name:e.name,response:Promise.resolve({arrayBuffer:()=>t,headers:{get:()=>{}}})},e.pendingDownloadInternal.response}if(e.pendingDownloadInternal&&e.pendingDownloadInternal.response){const t=undefined;return await e.pendingDownloadInternal.response}const t=e.loadRemote&&b.config.remoteSources?b.config.remoteSources:[""];let n;for(let r of t){r=r.trim(),"./"===r&&(r="");const t=os(e,r);e.name===t?b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}'`):b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}' for ${e.name}`);try{const r=ss({name:e.name,resolvedUrl:t,hash:e.hash,behavior:e.behavior});if(e.pendingDownloadInternal=r,n=await r.response,!n.ok)continue;return n}catch(e){continue}}const r=e.isOptional||e.name.match(/\.pdb$/)&&b.config.ignorePdbLoadErrors;if(!n)throw new Error(`Assert failed: Response undefined ${e.name}`);if(r)return o.print(`MONO_WASM: optional download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`),void 0;{const t=new Error(`MONO_WASM: download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`);throw t.status=n.status,t}}function os(e,t){if(!(null!==t&&void 0!==t))throw new Error(`Assert failed: sourcePrefix must be provided for ${e.name}`);let n;const r=b.config.assemblyRootFolder;if(e.resolvedUrl)n=e.resolvedUrl;else{if(""===t)if("assembly"===e.behavior||"pdb"===e.behavior)n=r?r+"/"+e.name:e.name;else if("resource"===e.behavior){const t=e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name;n=r?r+"/"+t:t}else n=e.name;else n=t+e.name;n=b.locateFile(n)}if(!(n&&"string"==typeof n))throw new Error("Assert failed: attemptUrl need to be path or url string");return n}function ss(e){try{if("function"===typeof o.downloadResource){const t=o.downloadResource(e);if(t)return t}const t={};e.hash&&(t.integrity=e.hash);const n=b.fetch_like(e.resolvedUrl,t);return{name:e.name,url:e.resolvedUrl,response:n}}catch(t){const n={ok:false,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(n)}}}function is(e,t,n){b.diagnosticTracing&&console.debug(`MONO_WASM: Loaded:${e.name} as ${e.behavior} size ${n.length} from ${t}`);const r="string"===typeof e.virtualPath?e.virtualPath:e.name;let s=null;switch(e.behavior){case"dotnetwasm":case"js-module-threads":break;case"resource":case"assembly":case"pdb":Jo.push({url:t,file:r});case"heap":case"icu":s=tn(n),qo[r]=[s,n.length];break;case"vfs":{const e=r.lastIndexOf("/");let t=e>0?r.substr(0,e):null,s=e>0?r.substr(e+1):r;s.startsWith("/")&&(s=s.substr(1)),t?(b.diagnosticTracing&&console.debug(`MONO_WASM: Creating directory '${t}'`),o.FS_createPath("/",t,true,true)):t="/",b.diagnosticTracing&&console.debug(`MONO_WASM: Creating file '${s}' in directory '${t}'`),cs(n,t)||o.FS_createDataFile(t,s,n,true,true,true);break}default:throw new Error(`Unrecognized asset behavior:${e.behavior}, for asset ${e.name}`)}if("assembly"===e.behavior){const e=undefined;if(!M.mono_wasm_add_assembly(r,s,n.length)){const e=Jo.findIndex((e=>e.file==r));Jo.splice(e,1)}}else"icu"===e.behavior?fe(s)||o.printErr(`MONO_WASM: Error loading ICU asset ${e.name}`):"resource"===e.behavior&&M.mono_wasm_add_satellite_assembly(r,e.culture||"",s,n.length);++Ho}async function as(e,t,n){if(!(e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response))throw new Error("Assert failed: Can't load dotnet.wasm");const r=await e.pendingDownloadInternal.response,o=r.headers&&r.headers.get?r.headers.get("Content-Type"):void 0;let s,i;if("function"===typeof WebAssembly.instantiateStreaming&&"application/wasm"===o){b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module streaming");const e=await WebAssembly.instantiateStreaming(r,t);s=e.instance,i=e.module}else{u&&"application/wasm"!==o&&console.warn('MONO_WASM: WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await r.arrayBuffer();b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module buffered");const n=await WebAssembly.instantiate(e,t);s=n.instance,i=n.module}n(s,i)}function cs(e,t){if(e.length<8)return false;const n=new DataView(e.buffer),r=undefined;if(1651270004!=n.getUint32(0,true))return false;const s=n.getUint32(4,true);if(0==s||e.length{const t=e[0],n=t.lastIndexOf("/"),r=t.slice(0,n+1);a.add(r)})),a.forEach((e=>{o.FS_createPath(t,e,true,true)}));for(const n of i){const r=n[0],s=n[1],i=e.slice(0,s);o.FS_createDataFile(t,r,i,true,true),e=e.slice(s)}return true}async function us(){if(await Fo.promise,b.config.assets){if(!(Vo==zo))throw new Error(`Assert failed: Expected ${zo} assets to be downloaded, but only finished ${Vo}`);if(!(Ho==Lo))throw new Error(`Assert failed: Expected ${Lo} assets to be in memory, but only instantiated ${Ho}`);Jo.forEach((e=>Io.loaded_files.push(e.url))),b.diagnosticTracing&&console.debug("MONO_WASM: all assets are loaded in wasm memory")}}function ls(){return Io.loaded_files}let fs,_s;function ds(e){const t=o;"undefined"===typeof globalThis.performance&&(globalThis.performance=gs),"undefined"===typeof globalThis.URL&&(globalThis.URL=class e{constructor(e){this.url=e}toString(){return this.url}});const n=t.imports=o.imports||{},r=e=>t=>{const n=o.imports[t];return n||e(t)};n.require?b.requirePromise=e.requirePromise=Promise.resolve(r(n.require)):e.require?b.requirePromise=e.requirePromise=Promise.resolve(r(e.require)):e.requirePromise?b.requirePromise=e.requirePromise.then((e=>r(e))):b.requirePromise=e.requirePromise=Promise.resolve(r((e=>{throw new Error(`Please provide Module.imports.${e} or Module.imports.require`)}))),b.scriptDirectory=e.scriptDirectory=bs(e),t.mainScriptUrlOrBlob=e.scriptUrl,t.__locateFile===t.locateFile?t.locateFile=b.locateFile=e=>Es(e)?e:b.scriptDirectory+e:b.locateFile=t.locateFile,n.fetch?e.fetch=b.fetch_like=n.fetch:e.fetch=b.fetch_like=ws,e.noExitRuntime=u;const s=e.updateGlobalBufferAndViews;e.updateGlobalBufferAndViews=e=>{s(e),en(e)}}async function ms(){if(a){if(s.require=await b.requirePromise,globalThis.performance===gs){const{performance:e}=s.require("perf_hooks");globalThis.performance=e}if(globalThis.crypto||(globalThis.crypto={}),!globalThis.crypto.getRandomValues){let e;try{e=s.require("node:crypto")}catch(e){}e?e.webcrypto?globalThis.crypto=e.webcrypto:e.randomBytes&&(globalThis.crypto.getRandomValues=t=>{t&&t.set(e.randomBytes(t.length))}):globalThis.crypto.getRandomValues=()=>{throw new Error("Using node without crypto support. To enable current operation, either provide polyfill for 'globalThis.crypto.getRandomValues' or enable 'node:crypto' module.")}}}}const gs={now:function(){return Date.now()}};async function ws(e,t){try{if(a){if(!fs){const e=await b.requirePromise;_s=e("url"),fs=e("fs")}e.startsWith("file://")&&(e=_s.fileURLToPath(e));const t=await fs.promises.readFile(e);return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(t)}}if("function"===typeof globalThis.fetch)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"===typeof read){const t=new Uint8Array(read(e,"binary"));return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(o.UTF8ArrayToString(t,0,t.length))}}}catch(t){return{ok:false,url:e,status:500,statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}}}throw new Error("No fetch implementation available")}function hs(e){return e.replace(/\\/g,"/").replace(/[?#].*/,"")}function ps(e){return e.slice(0,e.lastIndexOf("/"))+"/"}function bs(e){return l&&(e.scriptUrl=self.location.href),e.scriptUrl||(e.scriptUrl="./dotnet.js"),e.scriptUrl=hs(e.scriptUrl),ps(e.scriptUrl)}const ys=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,vs=/[a-zA-Z]:[\\/]/;function Es(e){return a||c?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||vs.test(e):ys.test(e)}function As(e,t,n,r,o,s){const i=ln(e),a=ln(t),c=ln(s);try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const t=xr(i),o=xr(a);b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSImport] ${t} from ${o}`);const s=xs(t,o),u=Mn(n),l={fn:s,marshal_exception_to_cs:eo,signature:n},f="_bound_js_"+t.replace(/\./g,"_");let _=`//# sourceURL=https://dotnet.generated.invalid/${f} \n`,d="",m="",g="";for(let e=0;e{const o=await n;return r&&(Ms.set(e,o),b.diagnosticTracing&&console.debug(`MONO_WASM: imported ES6 module '${e}' from '${t}'`)),o}))}function Ds(e,t){let n="unknown exception";if(t){n=t.toString();const e=t.stack;e&&(e.startsWith(n)?n=e:n+="\n"+e),n=Oe(n)}return e&&o.setValue(e,1,"i32"),n}function Us(e,t,n){const r=undefined;kr(Ds(e,t),n)}const Cs=new Map;function Ps(e,t,n,r,s){const i=ln(e),a=ln(s),c=o;try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const r=Mn(n),o=xr(i);if(!o)throw new Error("Assert failed: fully_qualified_name must be string");b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSExport] ${o}`);const{assembly:s,namespace:u,classname:l,methodname:f}=Hs(o),_=be(s);if(!_)throw new Error("Could not find assembly: "+s);const d=M.mono_wasm_assembly_find_class(_,u,l);if(!d)throw new Error("Could not find class: "+u+":"+l+" in assembly "+s);const m=`__Wrapper_${f}_${t}`,g=M.mono_wasm_assembly_find_method(d,m,-1);if(!g)throw new Error(`Could not find method: ${m} in ${d} [${s}]`);const w={method:g,signature:n,stackSave:c.stackSave,stackRestore:c.stackRestore,alloc_stack_frame:Sn,invoke_method_and_handle_exception:Ws},h="_bound_cs_"+`${u}_${l}_${f}`.replace(/\./g,"_").replace(/\//g,"_");let p=`//# sourceURL=https://dotnet.generated.invalid/${h} \n`,y="",v="";for(let e=0;e{const o=e.stackSave();try{const s=Sn(4),i=On(s,1),a=On(s,2),c=On(s,3);Lr(a,t),n&&0==n.length&&(n=void 0),oo(c,n,wr.String),Ws(r,s);const u=So(i,void 0,go);return u||Promise.resolve(0)}finally{e.stackRestore(o)}},b.javaScriptExports.release_js_owned_object_by_gc_handle=t=>{if(!t)throw new Error("Assert failed: Must be valid gc_handle");const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Object),lr(o,t),Ws(s,r)}finally{e.stackRestore(n)}},b.javaScriptExports.create_task_callback=()=>{const t=e.stackSave();try{const n=Sn(2);Ws(i,n);const r=undefined;return ur(On(n,1))}finally{e.stackRestore(t)}},b.javaScriptExports.complete_task=(t,n,r,o)=>{const s=e.stackSave();try{const i=Sn(5),c=On(i,2);Cn(c,wr.Object),lr(c,t);const u=On(i,3);if(n)eo(u,n);else{Cn(u,wr.None);const e=On(i,4);if(!o)throw new Error("Assert failed: res_converter missing");o(e,r)}Ws(a,i)}finally{e.stackRestore(s)}},b.javaScriptExports.call_delegate=(t,n,r,o,s,i,a,u)=>{const l=e.stackSave();try{const f=Sn(6),_=On(f,2);if(Cn(_,wr.Object),lr(_,t),i){const e=undefined;i(On(f,3),n)}if(a){const e=undefined;a(On(f,4),r)}if(u){const e=undefined;u(On(f,5),o)}if(Ws(c,f),s){const e=undefined;return s(On(f,1))}}finally{e.stackRestore(l)}},b.javaScriptExports.get_managed_stack_trace=t=>{const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Exception),lr(o,t),Ws(u,r);const s=undefined;return xo(On(r,1))}finally{e.stackRestore(n)}},n&&(b.javaScriptExports.install_synchronization_context=()=>{const t=e.stackSave();try{const r=Sn(2);Ws(n,r)}finally{e.stackRestore(t)}},f||b.javaScriptExports.install_synchronization_context())}function Ls(e){const t=M.mono_wasm_assembly_find_method(b.runtime_interop_exports_class,e,-1);if(!t)throw"Can't find method "+b.runtime_interop_namespace+"."+b.runtime_interop_exports_classname+"."+e;return t}function Js(e,t,n,r,o,s,i){const a=ln(i);try{const s=undefined;Qs(qs(e,t,n,r,o),a,true)}catch(e){Us(s,String(e),a)}finally{a.release()}}function qs(e,t,n,r,o){let s=null;switch(o){case 5:s=new Int8Array(n-t);break;case 6:s=new Uint8Array(n-t);break;case 7:s=new Int16Array(n-t);break;case 8:s=new Uint16Array(n-t);break;case 9:s=new Int32Array(n-t);break;case 10:s=new Uint32Array(n-t);break;case 13:s=new Float32Array(n-t);break;case 14:s=new Float64Array(n-t);break;case 15:s=new Uint8ClampedArray(n-t);break;default:throw new Error("Unknown array type "+o)}return Gs(s,e,t,n,r),s}function Gs(e,t,n,r,s){if(Ys(e)&&e.BYTES_PER_ELEMENT){if(s!==e.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+e.BYTES_PER_ELEMENT+"' sizeof managed element: '"+s+"'");let i=(r-n)*s;const a=e.length*e.BYTES_PER_ELEMENT;i>a&&(i=a);const c=undefined,u=n*s;return new Uint8Array(e.buffer,0,i).set(o.HEAPU8.subarray(t+u,t+u+i)),i}throw new Error("Object '"+e+"' is not a typed array")}function Ys(e){return"undefined"!==typeof SharedArrayBuffer?e.buffer instanceof ArrayBuffer||e.buffer instanceof SharedArrayBuffer:e.buffer instanceof ArrayBuffer}function Zs(e,t,n){switch(true){case null===t:case"undefined"===typeof t:return n.clear(),void 0;case"symbol"===typeof t:case"string"===typeof t:return Xi._create_uri_ref(t,n.address),void 0;default:return Ks(e,t,n),void 0}}function Xs(e){const t=fn();try{return Qs(e,t,false),t.value}finally{t.release()}}function Qs(e,t,n){if(T(t))throw new Error("Expected (value, WasmRoot, boolean)");switch(true){case null===e:case"undefined"===typeof e:return t.clear(),void 0;case"number"===typeof e:{let n;return(0|e)===e?(Rt(Uo._box_buffer,e),n=Uo._class_int32):e>>>0===e?($t(Uo._box_buffer,e),n=Uo._class_uint32):(Wt(Uo._box_buffer,e),n=Uo._class_double),M.mono_wasm_box_primitive_ref(n,Uo._box_buffer,8,t.address),void 0}case"string"===typeof e:return kr(e,t),void 0;case"symbol"===typeof e:return Nr(e,t),void 0;case"boolean"===typeof e:return Ot(Uo._box_buffer,e),M.mono_wasm_box_primitive_ref(Uo._class_boolean,Uo._box_buffer,4,t.address),void 0;case true===ft(e):return si(e,t),void 0;case"Date"===e.constructor.name:return Xi._create_date_time_ref(e.getTime(),t.address),void 0;default:return Ks(n,e,t),void 0}}function Ks(e,t,n){if(n.clear(),null!==t&&"undefined"!==typeof t){if(void 0!==t[Ge]){const e=undefined;return Ei(nt(t),n.address),void 0}if(t[Ye]&&(ai(t[Ye],e,n.address),n.value||delete t[Ye]),!n.value){const r=t[Po],o="undefined"===typeof r?0:r,s=Qe(t);Xi._create_cs_owned_proxy_ref(s,o,e?1:0,n.address)}}}function ei(e){const t=e.length*e.BYTES_PER_ELEMENT,n=o._malloc(t),r=new Uint8Array(o.HEAPU8.buffer,n,t);return r.set(new Uint8Array(e.buffer,e.byteOffset,t)),r}function ti(e,t){if(!Ys(e)||!e.BYTES_PER_ELEMENT)throw new Error("Object '"+e+"' is not a typed array");{const n=e[Po],r=ei(e);M.mono_wasm_typed_array_new_ref(r.byteOffset,e.length,e.BYTES_PER_ELEMENT,n,t.address),o._free(r.byteOffset)}}function ni(e){const t=fn();try{return ti(e,t),t.value}finally{t.release()}}function ri(e,t,n){if("number"!==typeof e)throw new Error(`Expected numeric value for enum argument, got '${e}'`);return 0|e}function oi(e,t,n){const r=fn();t?M.mono_wasm_string_array_new_ref(e.length,r.address):M.mono_wasm_obj_array_new_ref(e.length,r.address);const o=fn(0),s=r.address,i=o.address;try{for(let r=0;r{Xi._set_tcs_result_ref(r,e)}),(e=>{Xi._set_tcs_failure(r,e?e.toString():"")})).finally((()=>{Ke(n),tt(o,r)})),Xi._get_tcs_task_ref(r,t.address),{then_js_handle:n}}function ii(e,t,n){const r=ln(n);try{const n=Ze(e);if(T(n))return Us(t,"ERR06: Invalid JS object handle '"+e+"'",r),void 0;ti(n,r)}catch(e){Us(t,String(e),r)}finally{r.release()}}function ai(e,t,n){if(0===e||e===x)return Rt(n,0),void 0;Xi._get_cs_owned_object_by_js_handle_ref(e,t?1:0,n)}const ci=Symbol.for("wasm delegate_invoke");function ui(e){if(0===e)return;const t=fn(e);try{return di(t)}finally{t.release()}}function li(e){const t=undefined,n=undefined;return Ze(Xi._get_cs_owned_object_js_handle_ref(e.address,0))}function fi(e,t,n,r){switch(t){case 0:return null;case 26:case 27:throw new Error("int64 not available");case 3:case 29:return xr(e);case 4:throw new Error("no idea on how to unbox value types");case 5:return hi(e);case 6:return yi(e);case 7:return vi(e);case 10:case 11:case 12:case 13:case 14:case 15:case 16:case 17:case 18:throw new Error("Marshaling of primitive arrays are not supported.");case 20:return new Date(Xi._get_date_value_ref(e.address));case 21:return Xi._object_to_string_ref(e.address);case 22:return Xi._object_to_string_ref(e.address);case 23:return li(e);case 30:return;default:throw new Error(`no idea on how to unbox object of MarshalType ${t} at offset ${e.value} (root address is ${e.address})`)}}function _i(e,t,n){if(t>=512)throw new Error(`Got marshaling error ${t} when attempting to unbox object at address ${e.value} (root located at ${e.address})`);let r=0;if((4===t||7==t)&&(r=Ht(n),r<1024))throw new Error(`Got invalid MonoType ${r} for object at address ${e.value} (root located at ${e.address})`);return fi(e,t)}function di(e){if(0===e.value)return;const t=Uo._unbox_buffer,n=M.mono_wasm_try_unbox_primitive_and_get_type_ref(e.address,t,Uo._unbox_buffer_size);switch(n){case 1:return Jt(t);case 25:return Ht(t);case 32:return Ht(t);case 24:return Zt(t);case 2:return Xt(t);case 8:return 0!==Jt(t);case 28:return String.fromCharCode(Jt(t));case 0:return null;default:return _i(e,n,t)}}function mi(e){if(0===e)return null;const t=fn(e);try{return wi(t)}finally{t.release()}}function gi(e){return Xi._is_simple_array_ref(e.address)}function wi(e){if(0===e.value)return null;const t=e.address,n=fn(),r=n.address;try{const o=M.mono_wasm_array_length(e.value),s=new Array(o);for(let e=0;ett(n,t),{promise:o,promise_control:s}=it(r,r);n=o,Xi._setup_js_cont_ref(e.address,s),et(n,t)}return n}function vi(e){if(0===e.value)return null;const t=Xi._try_get_cs_owned_object_js_handle_ref(e.address,0);if(t){if(t===x)throw new Error("Cannot access a disposed JSObject at "+e.value);return Ze(t)}const n=Xi._get_js_owned_object_gc_handle_ref(e.address);let r=ot(n);return T(r)&&(r=new ManagedObject,et(r,n)),r}function Ei(e,t){if(!e)return Rt(t,0),void 0;Xi._get_js_owned_object_by_gc_handle_ref(e,t)}const Ai=new Map;function Si(e,t,n,r,s,i,a){Et(),o.stackRestore(a),"object"===typeof r&&(r.clear(),null!==t&&null===t.scratchResultRoot?t.scratchResultRoot=r:r.release()),"object"===typeof s&&(s.clear(),null!==t&&null===t.scratchExceptionRoot?t.scratchExceptionRoot=s:s.release()),"object"===typeof i&&(i.clear(),null!==t&&null===t.scratchThisArgRoot?t.scratchThisArgRoot=i:i.release())}function Oi(e,t){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const n=`${e}-${t}`;let r=Ai.get(n);if(void 0===r){const o=Gi(e);"undefined"===typeof t&&(t=Yi(o,void 0)),r=Li(o,t,false,e),Ai.set(n,r)}return r}function xi(e,t){const n=Me(e);"string"!==typeof t&&(t=Yi(n,void 0));const r=Li(n,t,false,"_"+e+"__entrypoint");return async function(...e){return e.length>0&&Array.isArray(e[0])&&(e[0]=oi(e[0],true,false)),r(...e)}}function ji(e,t,n){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");return t||(t=[[]]),xi(e,n)(...t)}function $i(e,t,n,r,o){const s=ln(n),i=ln(t),a=ln(o);try{const t=xr(i);if(!t||"string"!==typeof t)return Us(r,"ERR12: Invalid method name object @"+i.value,a),void 0;const n=Xe(e);if(T(n))return Us(r,"ERR13: Invalid JS object handle '"+e+"' while invoking '"+t+"'",a),void 0;const o=wi(s);try{const e=n[t];if("undefined"===typeof e)throw new Error("Method: '"+t+"' not found for: '"+Object.prototype.toString.call(n)+"'");const r=undefined;Qs(e.apply(n,o),a,true)}catch(e){Us(r,e,a)}}finally{s.release(),i.release(),a.release()}}function Ni(e,t,n,r){const o=ln(t),s=ln(r);try{const t=xr(o);if(!t)return Us(n,"Invalid property name object '"+o.value+"'",s),void 0;const r=Ze(e);if(T(r))return Us(n,"ERR01: Invalid JS object handle '"+e+"' while geting '"+t+"'",s),void 0;const i=undefined;Qs(r[t],s,true)}catch(e){Us(n,e,s)}finally{s.release(),o.release()}}function ki(e,t,n,r,o,s,i){const a=ln(n),c=ln(t),u=ln(i);try{const n=xr(c);if(!n)return Us(s,"Invalid property name object '"+t+"'",u),void 0;const i=Ze(e);if(T(i))return Us(s,"ERR02: Invalid JS object handle '"+e+"' while setting '"+n+"'",u),void 0;let l=false;const f=di(a);if(r)i[n]=f,l=true;else{if(l=false,!r&&!Object.prototype.hasOwnProperty.call(i,n))return Qs(false,u,false),void 0;true===o?Object.prototype.hasOwnProperty.call(i,n)&&(i[n]=f,l=true):(i[n]=f,l=true)}Qs(l,u,false)}catch(e){Us(s,e,u)}finally{u.release(),c.release(),a.release()}}function Ti(e,t,n,r){const o=ln(r);try{const r=Ze(e);if(T(r))return Us(n,"ERR03: Invalid JS object handle '"+e+"' while getting ["+t+"]",o),void 0;const s=undefined;Qs(r[t],o,true)}catch(e){Us(n,e,o)}finally{o.release()}}function Ri(e,t,n,r,o){const s=ln(n),i=ln(o);try{const n=Ze(e);if(T(n))return Us(r,"ERR04: Invalid JS object handle '"+e+"' while setting ["+t+"]",i),void 0;const o=di(s);n[t]=o,i.clear()}catch(e){Us(r,e,i)}finally{i.release(),s.release()}}function Mi(e,t,n){const r=ln(e),i=ln(n);try{const e=xr(r);let n;if(n=e?"Module"==e?o:"INTERNAL"==e?s:globalThis[e]:globalThis,null===n||void 0===typeof n)return Us(t,"Global object '"+e+"' not found.",i),void 0;Qs(n,i,true)}catch(e){Us(t,e,i)}finally{i.release(),r.release()}}function Ii(e,t,n,r,o){try{const e=globalThis.Blazor;if(!e)throw new Error("The blazor.webassembly.js library is not loaded.");return e._internal.invokeJSFromDotNet(t,n,r,o)}catch(t){const n=t.message+"\n"+t.stack,r=fn();return kr(n,r),r.copy_to_address(e),r.release(),0}}const Di=/[^A-Za-z0-9_$]/g,Ui=new Map,Ci=new Map,Pi=new Map;function Wi(e,t,n,r){let o=null,s=null,i=null;if(r){i=Object.keys(r),s=new Array(i.length);for(let e=0,t=i.length;e{e&&"AbortError"!==e.name&&o.printErr("MONO_WASM: Error in http_wasm_abort_response: "+e)}))}function sa(e,t,n,r,o,s,i,a){const c=undefined,u=undefined;return ia(e,t,n,r,o,s,new Span(i,a,0).slice())}function ia(e,t,n,r,o,s,i){if(!(e&&"string"===typeof e))throw new Error("Assert failed: expected url string");if(!(t&&n&&Array.isArray(t)&&Array.isArray(n)&&t.length===n.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");if(!(r&&o&&Array.isArray(r)&&Array.isArray(o)&&r.length===o.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");const a=new Headers;for(let e=0;e{const t=await fetch(e,c);return t.__abort_controller=s,t}))}function aa(e){if(!e.__headerNames){e.__headerNames=[],e.__headerValues=[];const t=e.headers.entries();for(const n of t)e.__headerNames.push(n[0]),e.__headerValues.push(n[1])}}function ca(e){return aa(e),e.__headerNames}function ua(e){return aa(e),e.__headerValues}function la(e){return _t((async()=>{const t=await e.arrayBuffer();return e.__buffer=t,e.__source_offset=0,t.byteLength}))}function fa(e,t){if(!e.__buffer)throw new Error("Assert failed: expected resoved arrayBuffer");if(e.__source_offset==e.__buffer.byteLength)return 0;const n=new Uint8Array(e.__buffer,e.__source_offset);t.set(n,0);const r=Math.min(t.byteLength,n.byteLength);return e.__source_offset+=r,r}function _a(e,t,n){const r=new Span(t,n,0);return _t((async()=>{if(e.__reader||(e.__reader=e.body.getReader()),e.__chunk||(e.__chunk=await e.__reader.read(),e.__source_offset=0),e.__chunk.done)return 0;const t=e.__chunk.value.byteLength-e.__source_offset;if(!(t>0))throw new Error("Assert failed: expected remaining_source to be greater than 0");const n=Math.min(t,r.byteLength),o=e.__chunk.value.subarray(e.__source_offset,e.__source_offset+n);return r.set(o,0),e.__source_offset+=n,t==n&&(e.__chunk=void 0),n}))}let da=0,ma=false,ga=0,wa;if(globalThis.navigator){const e=globalThis.navigator;e.userAgentData&&e.userAgentData.brands?ma=e.userAgentData.brands.some((e=>"Chromium"==e.brand)):e.userAgent&&(ma=e.userAgent.includes("Chrome"))}function ha(){for(;ga>0;)--ga,M.mono_background_exec()}function pa(){if(!ma)return;const e=(new Date).valueOf(),t=e+36e4,n=undefined,r=1e3;for(let n=Math.max(e+1e3,da);n{M.mono_set_timeout_exec(),ga++,ha()}),n-e)}da=t}function ba(){++ga,setTimeout(ha,0)}function ya(e){function mono_wasm_set_timeout_exec(){M.mono_set_timeout_exec()}wa&&(clearTimeout(wa),wa=void 0),wa=setTimeout(mono_wasm_set_timeout_exec,e)}class va{constructor(){this.queue=[],this.offset=0}getLength(){return this.queue.length-this.offset}isEmpty(){return 0==this.queue.length}enqueue(e){this.queue.push(e)}dequeue(){if(0===this.queue.length)return;const e=this.queue[this.offset];return this.queue[this.offset]=null,2*++this.offset>=this.queue.length&&(this.queue=this.queue.slice(this.offset),this.offset=0),e}peek(){return this.queue.length>0?this.queue[this.offset]:void 0}drain(e){for(;this.getLength();){const t=undefined;e(this.dequeue())}}}const Ea=Symbol.for("wasm ws_pending_send_buffer"),Aa=Symbol.for("wasm ws_pending_send_buffer_offset"),Sa=Symbol.for("wasm ws_pending_send_buffer_type"),Oa=Symbol.for("wasm ws_pending_receive_event_queue"),xa=Symbol.for("wasm ws_pending_receive_promise_queue"),ja=Symbol.for("wasm ws_pending_open_promise"),$a=Symbol.for("wasm ws_pending_close_promises"),Na=Symbol.for("wasm ws_pending_send_promises"),ka=Symbol.for("wasm ws_is_aborted"),Ta=Symbol.for("wasm ws_receive_status_ptr");let Ra=false,Ma,Ia;const Da=65536,Ua=new Uint8Array;function Ca(e,t,n,r){if(!(e&&"string"===typeof e))throw new Error("Assert failed: ERR12: Invalid uri "+typeof e);const o=new globalThis.WebSocket(e,t||void 0),{promise_control:s}=it();o[Oa]=new va,o[xa]=new va,o[ja]=s,o[Na]=[],o[$a]=[],o[Ta]=n,o.binaryType="arraybuffer";const i=()=>{o[ka]||(s.resolve(o),pa())},a=e=>{o[ka]||(za(o,e),pa())},c=e=>{if(o.removeEventListener("message",a),o[ka])return;r&&r(e.code,e.reason),s.reject(e.reason);for(const e of o[$a])e.resolve();const t=undefined;o[xa].drain((e=>{Mt(n,0),Mt(n+4,2),Mt(n+8,1),e.resolve()}))},u=e=>{s.reject(e.message||"WebSocket error")};return o.addEventListener("message",a),o.addEventListener("open",i,{once:true}),o.addEventListener("close",c,{once:true}),o.addEventListener("error",u,{once:true}),o}function Pa(e){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const t=undefined;return e[ja].promise}function Wa(e,t,n,r,s){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const i=undefined,a=Ja(e,new Uint8Array(o.HEAPU8.buffer,t,n),r,s);return s&&a?Ha(e,a):null}function Fa(e,t,n){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");const r=e[Oa],o=e[xa],s=e.readyState;if(s!=WebSocket.OPEN&&s!=WebSocket.CLOSING)throw new Error("InvalidState: The WebSocket is not connected.");if(r.getLength()){if(!(0==o.getLength()))throw new Error("Assert failed: ERR20: Invalid WS state");return La(e,r,t,n),null}const{promise:i,promise_control:a}=it(),c=a;return c.buffer_ptr=t,c.buffer_length=n,o.enqueue(c),i}function Ba(e,t,n,r){if(!!!e)throw new Error("Assert failed: ERR19: expected ws instance");if(e.readyState==WebSocket.CLOSED)return null;if(r){const{promise:r,promise_control:o}=it();return e[$a].push(o),"string"===typeof n?e.close(t,n):e.close(t),r}return Ra||(Ra=true,console.warn("WARNING: Web browsers do not support closing the output side of a WebSocket. CloseOutputAsync has closed the socket and discarded any incoming messages.")),"string"===typeof n?e.close(t,n):e.close(t),null}function Va(e){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");e[ka]=true;const t=e[ja];t&&t.reject("OperationCanceledException");for(const t of e[$a])t.reject("OperationCanceledException");for(const t of e[Na])t.reject("OperationCanceledException");e[xa].drain((e=>{e.reject("OperationCanceledException")})),e.close(1e3,"Connection was aborted.")}function Ha(e,t){if(e.send(t),e[Ea]=null,e.bufferedAmount{if(0===e.bufferedAmount)r.resolve();else if(e.readyState!=WebSocket.OPEN)r.reject("InvalidState: The WebSocket is not connected.");else if(!r.isDone)return globalThis.setTimeout(i,s),s=Math.min(1.5*s,1e3),void 0;const t=o.indexOf(r);t>-1&&o.splice(t,1)};return globalThis.setTimeout(i,0),n}function za(e,t){const n=e[Oa],r=e[xa];if("string"===typeof t.data)void 0===Ia&&(Ia=new TextEncoder),n.enqueue({type:0,data:Ia.encode(t.data),offset:0});else{if("ArrayBuffer"!==t.data.constructor.name)throw new Error("ERR19: WebSocket receive expected ArrayBuffer");n.enqueue({type:1,data:new Uint8Array(t.data),offset:0})}if(r.getLength()&&n.getLength()>1)throw new Error("ERR21: Invalid WS state");for(;r.getLength()&&n.getLength();){const t=r.dequeue();La(e,n,t.buffer_ptr,t.buffer_length),t.resolve()}pa()}function La(e,t,n,r){const s=t.peek(),i=Math.min(r,s.data.length-s.offset);if(i>0){const e=s.data.subarray(s.offset,s.offset+i),t=undefined;new Uint8Array(o.HEAPU8.buffer,n,r).set(e,0),s.offset+=i}const a=s.data.length===s.offset?1:0;a&&t.dequeue();const c=e[Ta];Mt(c,i),Mt(c+4,s.type),Mt(c+8,a)}function Ja(e,t,n,r){let o=e[Ea],s=0;const i=t.byteLength;if(o){if(s=e[Aa],n=e[Sa],0!==i){if(s+i>o.length){const n=new Uint8Array(1.5*(s+i+50));n.set(o,0),n.subarray(s).set(t),e[Ea]=o=n}else o.subarray(s).set(t);s+=i,e[Aa]=s}}else r?0!==i&&(o=t,s=i):(0!==i&&(o=t.slice(),s=i,e[Aa]=s,e[Ea]=o),e[Sa]=n);if(r){if(0==s||null==o)return Ua;if(0===n){void 0===Ma&&(Ma=new TextDecoder("utf-8",{fatal:false}));const e="undefined"!==typeof SharedArrayBuffer&&o instanceof SharedArrayBuffer?o.slice(0,s):o.subarray(0,s);return Ma.decode(e)}return o.subarray(0,s)}return null}function qa(){return{mono_wasm_exit:e=>{o.printErr("MONO_WASM: early exit "+e)},mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression,mono_method_resolve:Gi,mono_intern_string:jr,logging:void 0,mono_wasm_stringify_as_error_with_stack:xe,mono_wasm_get_loaded_files:ls,mono_wasm_send_dbg_command_with_parms:q,mono_wasm_send_dbg_command:G,mono_wasm_get_dbg_command_info:Y,mono_wasm_get_details:ie,mono_wasm_release_object:ce,mono_wasm_call_function_on:oe,mono_wasm_debugger_resume:Z,mono_wasm_detach_debugger:X,mono_wasm_raise_debug_event:K,mono_wasm_change_debugger_log_level:Q,mono_wasm_debugger_attached:te,mono_wasm_runtime_is_ready:b.mono_wasm_runtime_is_ready,get_property:$s,set_property:js,has_property:Ns,get_typeof_property:ks,get_global_this:Ts,get_dotnet_instance:()=>_,dynamic_import:Is,mono_wasm_cancel_promise:dt,ws_wasm_create:Ca,ws_wasm_open:Pa,ws_wasm_send:Wa,ws_wasm_receive:Fa,ws_wasm_close:Ba,ws_wasm_abort:Va,http_wasm_supports_streaming_response:ta,http_wasm_create_abort_controler:na,http_wasm_abort_request:ra,http_wasm_abort_response:oa,http_wasm_fetch:ia,http_wasm_fetch_bytes:sa,http_wasm_get_response_header_names:ca,http_wasm_get_response_header_values:ua,http_wasm_get_response_bytes:fa,http_wasm_get_response_length:la,http_wasm_get_streamed_response_bytes:_a}}function Ga(e){Object.assign(e,{mono_wasm_exit:M.mono_wasm_exit,mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression})}function Ya(){return{mono_wasm_setenv:xc,mono_wasm_load_bytes_into_heap:tn,mono_wasm_load_icu_data:fe,mono_wasm_runtime_ready:mono_wasm_runtime_ready,mono_wasm_load_data_archive:cs,mono_wasm_load_config:Rc,mono_load_runtime_and_bcl_args:Dc,mono_wasm_new_root_buffer:un,mono_wasm_new_root:fn,mono_wasm_new_external_root:ln,mono_wasm_release_roots:_n,mono_run_main:Re,mono_run_main_and_exit:Te,mono_wasm_add_assembly:null,mono_wasm_load_runtime:kc,config:b.config,loaded_files:[],setB32:Ot,setI8:kt,setI16:Tt,setI32:Mt,setI52:Dt,setU52:Ut,setI64Big:Ct,setU8:xt,setU16:jt,setU32:Nt,setF32:Pt,setF64:Wt,getB32:Ft,getI8:zt,getI16:Lt,getI32:Jt,getI52:qt,getU52:Gt,getI64Big:Yt,getU8:Bt,getU16:Vt,getU32:Ht,getF32:Zt,getF64:Xt}}function Za(e){Object.assign(e,{mono_wasm_add_assembly:M.mono_wasm_add_assembly})}function Xa(){return{bind_static_method:Oi,call_assembly_entry_point:ji,mono_obj_array_new:null,mono_obj_array_set:null,js_string_to_mono_string:Mr,js_typed_array_to_array:ni,mono_array_to_js_array:mi,js_to_mono_obj:Xs,conv_string:Or,unbox_mono_obj:ui,mono_obj_array_new_ref:null,mono_obj_array_set_ref:null,js_string_to_mono_string_root:kr,js_typed_array_to_array_root:ti,js_to_mono_obj_root:Qs,conv_string_root:xr,unbox_mono_obj_root:di,mono_array_root_to_js_array:wi}}function Qa(e){Object.assign(e,{mono_obj_array_new:M.mono_wasm_obj_array_new,mono_obj_array_set:M.mono_wasm_obj_array_set,mono_obj_array_new_ref:M.mono_wasm_obj_array_new_ref,mono_obj_array_set_ref:M.mono_wasm_obj_array_set_ref})}function Ka(){}async function ec(){return console.warn("MONO_WASM: ignoring diagnostics options because this runtime does not support diagnostics"),void 0}let tc,nc=false,rc=false;const oc=it(),sc=it(),ic=it(),ac=it(),cc=it(),uc=it(),lc=it(),fc=it(),_c=it();function dc(e,t){const n=e.instantiateWasm,r=e.preInit?"function"===typeof e.preInit?[e.preInit]:e.preInit:[],o=e.preRun?"function"===typeof e.preRun?[e.preRun]:e.preRun:[],s=e.postRun?"function"===typeof e.postRun?[e.postRun]:e.postRun:[],i=e.onRuntimeInitialized?e.onRuntimeInitialized:()=>{};rc=!e.configSrc&&(!e.config||!e.config.assets||-1==e.config.assets.findIndex((e=>"assembly"===e.behavior))),e.instantiateWasm=(e,t)=>mc(e,t,n),e.preInit=[()=>gc(r)],e.preRun=[()=>wc(o)],e.onRuntimeInitialized=()=>hc(i),e.postRun=[()=>pc(s)],e.ready.then((async()=>{await _c.promise,oc.promise_control.resolve(t)})).catch((e=>{oc.promise_control.reject(e)})),e.ready=oc.promise,e.onAbort||(e.onAbort=()=>Ie)}function mc(e,t,n){if(o.configSrc||o.config||n||o.print("MONO_WASM: configSrc nor config was specified"),tc=o.config?b.config=o.config:b.config=o.config={},b.diagnosticTracing=!!tc.diagnosticTracing,n){const r=undefined;return n(e,((e,n)=>{ic.promise_control.resolve(),t(e,n)}))}return $c(e,t),[]}function gc(e){o.addRunDependency("mono_pre_init");try{yc(),b.diagnosticTracing&&console.debug("MONO_WASM: preInit"),ac.promise_control.resolve(),e.forEach((e=>e()))}catch(e){throw Oc("MONO_WASM: user preInint() failed",e),bc(e,true),e}(async()=>{try{await vc(),rc||await Ec()}catch(e){throw bc(e,true),e}cc.promise_control.resolve(),o.removeRunDependency("mono_pre_init")})()}async function wc(e){o.addRunDependency("mono_pre_run_async"),await ic.promise,await cc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: preRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback preRun() failed",e),bc(e,true),e}uc.promise_control.resolve(),o.removeRunDependency("mono_pre_run_async")}async function hc(e){await uc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: onRuntimeInitialized"),lc.promise_control.resolve();try{rc||(await us(),await Ac()),tc.runtimeOptions&&jc(tc.runtimeOptions);try{e()}catch(e){throw Oc("MONO_WASM: user callback onRuntimeInitialized() failed",e),e}await Sc()}catch(e){throw Oc("MONO_WASM: onRuntimeInitializedAsync() failed",e),bc(e,true),e}fc.promise_control.resolve()}async function pc(e){await fc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: postRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback posRun() failed",e),bc(e,true),e}_c.promise_control.resolve()}function bc(e,t){b.diagnosticTracing&&console.trace("MONO_WASM: abort_startup"),oc.promise_control.reject(e),ic.promise_control.reject(e),ac.promise_control.reject(e),cc.promise_control.reject(e),uc.promise_control.reject(e),lc.promise_control.reject(e),fc.promise_control.reject(e),_c.promise_control.reject(e),t&&De(1,e)}function yc(){o.addRunDependency("mono_wasm_pre_init_essential"),b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential"),I(),Ga(s),Za(Io),Qa(Do),o.removeRunDependency("mono_wasm_pre_init_essential")}async function vc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential_async"),o.addRunDependency("mono_wasm_pre_init_essential_async"),await ms(),await Rc(o.configSrc),o.removeRunDependency("mono_wasm_pre_init_essential_async")}async function Ec(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_full"),o.addRunDependency("mono_wasm_pre_init_full"),await es(),o.removeRunDependency("mono_wasm_pre_init_full")}async function Ac(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_before_user_runtime_initialized");try{await Nc(),de(),b.mono_wasm_load_runtime_done||kc("unused",tc.debugLevel),b.mono_wasm_runtime_is_ready||mono_wasm_runtime_ready(),b.mono_wasm_symbols_are_ready||ke("dotnet.js.symbols"),setTimeout((()=>{Ar.init_fields()}))}catch(e){throw Oc("MONO_WASM: Error in mono_wasm_before_user_runtime_initialized",e),e}}async function Sc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_after_user_runtime_initialized");try{if(!o.disableDotnet6Compatibility&&o.exports){const e=globalThis;for(let t=0;tb.config,setHeapB32:Ot,setHeapU8:xt,setHeapU16:jt,setHeapU32:Nt,setHeapI8:kt,setHeapI16:Tt,setHeapI32:Mt,setHeapI52:Dt,setHeapU52:Ut,setHeapI64Big:Ct,setHeapF32:Pt,setHeapF64:Wt,getHeapB32:Ft,getHeapU8:Bt,getHeapU16:Vt,getHeapU32:Ht,getHeapI8:zt,getHeapI16:Lt,getHeapI32:Jt,getHeapI52:qt,getHeapU52:Gt,getHeapI64Big:Yt,getHeapF32:Zt,getHeapF64:Xt}}function Hc(){const e=undefined;return{dotnet:Bc,exit:De}}const zc=Jc,Lc=Gc;function Jc(n,o,s,i){const a=o.module,c=globalThis;g(n,o),Co(o),ds(s),Object.assign(o.mono,Ya()),Object.assign(o.binding,Xa()),Object.assign(o.internal,qa()),Object.assign(o.internal,qa());const u=Vc();if(e.__linker_exports=Wc(),Object.assign(_,{MONO:o.mono,BINDING:o.binding,INTERNAL:o.internal,IMPORTS:o.marshaled_imports,Module:a,runtimeBuildInfo:{productVersion:t,buildConfiguration:r},...u}),Object.assign(i,u),o.module.__undefinedConfig&&(a.disableDotnet6Compatibility=true,a.configSrc="./mono-config.json"),a.print||(a.print=console.log.bind(console)),a.printErr||(a.printErr=console.error.bind(console)),"undefined"===typeof a.disableDotnet6Compatibility&&(a.disableDotnet6Compatibility=true),n.isGlobal||!a.disableDotnet6Compatibility){Object.assign(a,_),a.mono_bind_static_method=(e,t)=>(console.warn("MONO_WASM: Module.mono_bind_static_method is obsolete, please use [JSExportAttribute] interop instead"),Oi(e,t));const e=(e,t)=>{if("undefined"!==typeof c[e])return;let n;Object.defineProperty(globalThis,e,{get:()=>{if(T(n)){const r=(new Error).stack,o=r?r.substr(r.indexOf("\n",8)+1):"";console.warn(`MONO_WASM: global ${e} is obsolete, please use Module.${e} instead ${o}`),n=t()}return n}})};c.MONO=o.mono,c.BINDING=o.binding,c.INTERNAL=o.internal,n.isGlobal||(c.Module=a),e("cwrap",(()=>a.cwrap)),e("addRunDependency",(()=>a.addRunDependency)),e("removeRunDependency",(()=>a.removeRunDependency))}let l;return c.getDotnetRuntime?l=c.getDotnetRuntime.__list:(c.getDotnetRuntime=e=>c.getDotnetRuntime.__list.getRuntime(e),c.getDotnetRuntime.__list=l=new qc),l.registerRuntime(_),dc(a,_),_}e.__linker_exports=null;class qc{constructor(){this.list={}}registerRuntime(e){return e.runtimeId=Object.keys(this.list).length,this.list[e.runtimeId]=Be(e),e.runtimeId}getRuntime(e){const t=this.list[e];return t?t.deref():void 0}}function Gc(e,t){w(t),Object.assign(d,Hc()),h(e)}return e.__initializeImportsAndExports=zc,e.__setEmscriptenEntrypoint=Lc,e.moduleExports=d,Object.defineProperty(e,"__esModule",{value:true}),e}({});
+
+var createDotnetRuntime = (() => {
+ var _scriptDir = import.meta.url;
+
+ return (
+function(createDotnetRuntime) {
+ createDotnetRuntime = createDotnetRuntime || {};
+
+"use strict";var Module=typeof createDotnetRuntime!="undefined"?createDotnetRuntime:{};var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var require=require||undefined;var __dirname=__dirname||"";var __callbackAPI={MONO:MONO,BINDING:BINDING,INTERNAL:INTERNAL,IMPORTS:IMPORTS};if(typeof createDotnetRuntime==="function"){__callbackAPI.Module=Module={ready:Module.ready};const extension=createDotnetRuntime(__callbackAPI);if(extension.ready){throw new Error("MONO_WASM: Module.ready couldn't be redefined.")}Object.assign(Module,extension);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else if(typeof createDotnetRuntime==="object"){__callbackAPI.Module=Module={ready:Module.ready,__undefinedConfig:Object.keys(createDotnetRuntime).length===1};Object.assign(Module,createDotnetRuntime);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else{throw new Error("MONO_WASM: Can't use moduleFactory callback of createDotnetRuntime function.")}var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;err("exiting due to exception: "+toLog)}var fs;var nodePath;var requireNodeFS;if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}requireNodeFS=()=>{if(!nodePath){fs=require("fs");nodePath=require("path")}};read_=function shell_read(filename,binary){requireNodeFS();filename=nodePath["normalize"](filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror)=>{requireNodeFS();filename=nodePath["normalize"](filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",function(reason){throw reason});quit_=(status,toThrow)=>{if(keepRuntimeAlive()){process["exitCode"]=status;throw toThrow}logExceptionOnExit(toThrow);process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=function shell_read(f){return read(f)}}readBinary=function readBinary(f){let data;if(typeof readbuffer=="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data=="object");return data};readAsync=function readAsync(f,onload,onerror){setTimeout(()=>onload(readBinary(f)),0)};if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit=="function"){quit_=(status,toThrow)=>{logExceptionOnExit(toThrow);quit(status)}}if(typeof print!="undefined"){if(typeof console=="undefined")console={};console.log=print;console.warn=console.error=typeof printErr!="undefined"?printErr:print}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var POINTER_SIZE=4;function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}}function uleb128Encode(n){if(n<128){return[n]}return[n%128|128,n>>7]}function convertJsFunctionToWasm(func,sig){if(typeof WebAssembly.Function=="function"){var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64","p":"i32"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i{tempRet0=value};var getTempRet0=()=>tempRet0;var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;if(typeof WebAssembly!="object"){abort("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}function getCFunc(ident){var func=Module["_"+ident];return func}function ccall(ident,returnType,argTypes,args,opts){var toC={"string":function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret},"array":function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string"){return UTF8ToString(ret)}if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!="undefined"?new TextDecoder("utf-16le"):undefined;function allocateUTF8(str){var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8Array(str,HEAP8,ret,size);return ret}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;function keepRuntimeAlive(){return noExitRuntime}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();SOCKFS.root=FS.mount(SOCKFS,{},null);callRuntimeCallbacks(__ATINIT__)}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){{if(Module["onAbort"]){Module["onAbort"](what)}}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;if(Module["locateFile"]){wasmBinaryFile="dotnet.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}}else{wasmBinaryFile=new URL("dotnet.wasm",import.meta.url).toString()}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"env":asmLibraryArg,"wasi_snapshot_preview1":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["memory"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["__indirect_function_table"];addOnInit(Module["asm"]["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&typeof fetch=="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync().catch(readyPromiseReject);return{}}var tempDouble;var tempI64;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback(Module);continue}var func=callback.func;if(typeof func=="number"){if(callback.arg===undefined){getWasmTableEntry(func)()}else{getWasmTableEntry(func)(callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}function demangle(func){return func}function demangleAll(text){var regex=/\b_Z[\w\d_]+/g;return text.replace(regex,function(x){var y=demangle(x);return x===y?x:y+" ["+x+"]"})}function getValue(ptr,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":return HEAP8[ptr>>0];case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP32[ptr>>2];case"float":return HEAPF32[ptr>>2];case"double":return Number(HEAPF64[ptr>>3]);default:abort("invalid type for getValue: "+type)}return null}var wasmTableMirror=[];function getWasmTableEntry(funcPtr){var func=wasmTableMirror[funcPtr];if(!func){if(funcPtr>=wasmTableMirror.length)wasmTableMirror.length=funcPtr+1;wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func}function jsStackTrace(){var error=new Error;if(!error.stack){try{throw new Error}catch(e){error=e}if(!error.stack){return"(no stack trace available)"}}return error.stack.toString()}function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":HEAP8[ptr>>0]=value;break;case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;default:abort("invalid type for setValue: "+type)}}function setWasmTableEntry(idx,func){wasmTable.set(idx,func);wasmTableMirror[idx]=wasmTable.get(idx)}function ___cxa_allocate_exception(size){return _malloc(size+24)+24}var exceptionCaught=[];function exception_addRef(info){info.add_ref()}var uncaughtExceptionCount=0;function ___cxa_begin_catch(ptr){var info=new ExceptionInfo(ptr);if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(info);exception_addRef(info);return info.get_exception_ptr()}var exceptionLast=0;function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){HEAPU32[this.ptr+4>>2]=type};this.get_type=function(){return HEAPU32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAPU32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAPU32[this.ptr+8>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=prev-1;return prev===1};this.set_adjusted_ptr=function(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return HEAPU32[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}function ___cxa_free_exception(ptr){return _free(new ExceptionInfo(ptr).ptr)}function exception_decRef(info){if(info.release_ref()&&!info.get_rethrown()){var destructor=info.get_destructor();if(destructor){getWasmTableEntry(destructor)(info.excPtr)}___cxa_free_exception(info.excPtr)}}function ___cxa_end_catch(){_setThrew(0);var info=exceptionCaught.pop();exception_decRef(info);exceptionLast=0}function ___resumeException(ptr){if(!exceptionLast){exceptionLast=ptr}throw ptr}function ___cxa_find_matching_catch_3(){var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0}var info=new ExceptionInfo(thrown);info.set_adjusted_ptr(thrown);var thrownType=info.get_type();if(!thrownType){setTempRet0(0);return thrown}var typeArray=Array.prototype.slice.call(arguments);for(var i=0;ipath.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join("/"))},join2:(l,r)=>{return PATH.normalize(l+"/"+r)}};function getRandomDevice(){if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){var randomBuffer=new Uint8Array(1);return function(){crypto.getRandomValues(randomBuffer);return randomBuffer[0]}}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");return function(){return crypto_module["randomBytes"](1)[0]}}catch(e){}}return function(){abort("randomDevice")}}var PATH_FS={resolve:function(){var resolvedPath="",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i0){result=buf.slice(0,bytesRead).toString("utf-8")}else{result=null}}else if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else if(typeof readline=="function"){result=readline();if(result!==null){result+="\n"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function zeroMemory(address,size){HEAPU8.fill(0,address,address+size)}function alignMemory(size,alignment){return Math.ceil(size/alignment)*alignment}function mmapAlloc(size){size=alignMemory(size,65536);var ptr=_emscripten_builtin_memalign(65536,size);if(!ptr)return 0;zeroMemory(ptr,size);return ptr}var MEMFS={ops_table:null,mount:function(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode:function(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}if(!MEMFS.ops_table){MEMFS.ops_table={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}}}var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray:function(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage:function(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i0||position+length{path=PATH_FS.resolve(FS.cwd(),path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=PATH.normalizeArray(path.split("/").filter(p=>!!p),false);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:node=>{var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?mount+"/"+path:mount+path}path=path?node.name+"/"+path:node.name;node=node.parent}},hashName:(parentid,name)=>{var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode:node=>{var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:node=>{var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:(parent,name)=>{var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:(parent,name,mode,rdev)=>{var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:node=>{FS.hashRemoveNode(node)},isRoot:node=>{return node===node.parent},isMountpoint:node=>{return!!node.mounted},isFile:mode=>{return(mode&61440)===32768},isDir:mode=>{return(mode&61440)===16384},isLink:mode=>{return(mode&61440)===40960},isChrdev:mode=>{return(mode&61440)===8192},isBlkdev:mode=>{return(mode&61440)===24576},isFIFO:mode=>{return(mode&61440)===4096},isSocket:mode=>{return(mode&49152)===49152},flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:str=>{var flags=FS.flagModes[str];if(typeof flags=="undefined"){throw new Error("Unknown file open mode: "+str)}return flags},flagsToPermissionString:flag=>{var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions:(node,perms)=>{if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup:dir=>{var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:(dir,name)=>{try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:(dir,name,isdir)=>{var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:(node,flags)=>{if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:(fd_start=0,fd_end=FS.MAX_OPEN_FDS)=>{for(var fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:fd=>FS.streams[fd],createStream:(stream,fd_start,fd_end)=>{if(!FS.FSStream){FS.FSStream=function(){this.shared={}};FS.FSStream.prototype={object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}},flags:{get:function(){return this.shared.flags},set:function(val){this.shared.flags=val}},position:{get function(){return this.shared.position},set:function(val){this.shared.position=val}}}}stream=Object.assign(new FS.FSStream,stream);var fd=FS.nextfd(fd_start,fd_end);stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:fd=>{FS.streams[fd]=null},chrdev_stream_ops:{open:stream=>{var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:()=>{throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice:(dev,ops)=>{FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts:mount=>{var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:(populate,callback)=>{if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work")}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:(type,opts,mountpoint)=>{var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:mountpoint=>{var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:(parent,name)=>{return parent.node_ops.lookup(parent,name)},mknod:(path,mode,dev)=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:(path,mode)=>{mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:(path,mode)=>{mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:(path,mode)=>{var dirs=path.split("/");var d="";for(var i=0;i{if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink:(oldpath,newpath)=>{if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename:(old_path,new_path)=>{var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name)}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir:path=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink:path=>{var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat:(path,dontFollow)=>{var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat:path=>{return FS.stat(path,true)},chmod:(path,mode,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod:(path,mode)=>{FS.chmod(path,mode,true)},fchmod:(fd,mode)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chmod(stream.node,mode)},chown:(path,uid,gid,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown:(path,uid,gid)=>{FS.chown(path,uid,gid,true)},fchown:(fd,uid,gid)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chown(stream.node,uid,gid)},truncate:(path,len)=>{if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate:(fd,len)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime:(path,atime,mtime)=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open:(path,flags,mode)=>{if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS.modeStringToFlags(flags):flags;mode=typeof mode=="undefined"?438:mode;if(flags&64){mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close:stream=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed:stream=>{return stream.fd===null},llseek:(stream,offset,whence)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read:(stream,buffer,offset,length,position)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write:(stream,buffer,offset,length,position,canOwn)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate:(stream,offset,length)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap:(stream,length,position,prot,flags)=>{if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync:(stream,buffer,offset,length,mmapFlags)=>{if(!stream||!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},munmap:stream=>0,ioctl:(stream,cmd,arg)=>{if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile:(path,opts={})=>{opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error('Invalid encoding type "'+opts.encoding+'"')}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile:(path,data,opts={})=>{opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir:path=>{var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories:()=>{FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices:()=>{FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var random_device=getRandomDevice();FS.createDevice("/dev","random",random_device);FS.createDevice("/dev","urandom",random_device);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories:()=>{FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount:()=>{var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup:(parent,name)=>{var fd=+name;var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams:()=>{if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},ensureErrnoError:()=>{if(FS.ErrnoError)return;FS.ErrnoError=function ErrnoError(errno,node){this.node=node;this.setErrno=function(errno){this.errno=errno};this.setErrno(errno);this.message="FS error"};FS.ErrnoError.prototype=new Error;FS.ErrnoError.prototype.constructor=FS.ErrnoError;[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack=""})},staticInit:()=>{FS.ensureErrnoError();FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={"MEMFS":MEMFS}},init:(input,output,error)=>{FS.init.initialized=true;FS.ensureErrnoError();Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit:()=>{FS.init.initialized=false;for(var i=0;i{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode},findObject:(path,dontResolveLastLink)=>{var ret=FS.analyzePath(path,dontResolveLastLink);if(ret.exists){return ret.object}else{return null}},analyzePath:(path,dontResolveLastLink)=>{try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath:(parent,path,canRead,canWrite)=>{parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile:(parent,name,properties,canRead,canWrite)=>{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile:(parent,name,data,canRead,canWrite,canOwn)=>{var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS.getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open:stream=>{stream.seekable=false},close:stream=>{if(output&&output.buffer&&output.buffer.length){output(10)}},read:(stream,buffer,offset,length,pos)=>{var bytesRead=0;for(var i=0;i{for(var i=0;i{if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else if(read_){try{obj.contents=intArrayFromString(read_(obj.url),true);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}else{throw new Error("Cannot load without read() or XMLHttpRequest.")}},createLazyFile:(parent,name,url,canRead,canWrite)=>{function LazyUint8Array(){this.lengthKnown=false;this.chunks=[]}LazyUint8Array.prototype.get=function LazyUint8Array_get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}else{return intArrayFromString(xhr.responseText||"",true)}};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency("cp "+fullname);function processData(byteArray){function finish(byteArray){if(preFinish)preFinish();if(!dontCreateFile){FS.createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}if(onload)onload();removeRunDependency(dep)}if(Browser.handledByPreloadPlugin(byteArray,fullname,finish,()=>{if(onerror)onerror();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,byteArray=>processData(byteArray),onerror)}else{processData(url)}},indexedDB:()=>{return window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB},DB_NAME:()=>{return"EM_FS_"+window.location.pathname},DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=()=>{out("creating db");var db=openRequest.result;db.createObjectStore(FS.DB_STORE_NAME)};openRequest.onsuccess=()=>{var db=openRequest.result;var transaction=db.transaction([FS.DB_STORE_NAME],"readwrite");var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var putRequest=files.put(FS.analyzePath(path).object.contents,path);putRequest.onsuccess=()=>{ok++;if(ok+fail==total)finish()};putRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror},loadFilesFromDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=onerror;openRequest.onsuccess=()=>{var db=openRequest.result;try{var transaction=db.transaction([FS.DB_STORE_NAME],"readonly")}catch(e){onerror(e);return}var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var getRequest=files.get(path);getRequest.onsuccess=()=>{if(FS.analyzePath(path).exists){FS.unlink(path)}FS.createDataFile(PATH.dirname(path),PATH.basename(path),getRequest.result,true,true,true);ok++;if(ok+fail==total)finish()};getRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt:function(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=FS.getStream(dirfd);if(!dirstream)throw new FS.ErrnoError(8);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat:function(func,path,buf){try{var stat=func(path)}catch(e){if(e&&e.node&&PATH.normalize(path)!==PATH.normalize(FS.getPath(e.node))){return-54}throw e}HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=0;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAP32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;HEAP32[buf+32>>2]=0;tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1];HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;HEAP32[buf+56>>2]=stat.atime.getTime()/1e3|0;HEAP32[buf+60>>2]=0;HEAP32[buf+64>>2]=stat.mtime.getTime()/1e3|0;HEAP32[buf+68>>2]=0;HEAP32[buf+72>>2]=stat.ctime.getTime()/1e3|0;HEAP32[buf+76>>2]=0;tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+80>>2]=tempI64[0],HEAP32[buf+84>>2]=tempI64[1];return 0},doMsync:function(addr,stream,len,flags,offset){var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}var SOCKFS={mount:function(mount){Module["websocket"]=Module["websocket"]&&"object"===typeof Module["websocket"]?Module["websocket"]:{};Module["websocket"]._callbacks={};Module["websocket"]["on"]=function(event,callback){if("function"===typeof callback){this._callbacks[event]=callback}return this};Module["websocket"].emit=function(event,param){if("function"===typeof this._callbacks[event]){this._callbacks[event].call(this,param)}};return FS.createNode(null,"/",16384|511,0)},createSocket:function(family,type,protocol){type&=~526336;var streaming=type==1;if(streaming&&protocol&&protocol!=6){throw new FS.ErrnoError(66)}var sock={family:family,type:type,protocol:protocol,server:null,error:null,peers:{},pending:[],recv_queue:[],sock_ops:SOCKFS.websocket_sock_ops};var name=SOCKFS.nextname();var node=FS.createNode(SOCKFS.root,name,49152,0);node.sock=sock;var stream=FS.createStream({path:name,node:node,flags:2,seekable:false,stream_ops:SOCKFS.stream_ops});sock.stream=stream;return sock},getSocket:function(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll:function(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl:function(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read:function(stream,buffer,offset,length,position){var sock=stream.node.sock;var msg=sock.sock_ops.recvmsg(sock,length);if(!msg){return 0}buffer.set(msg.buffer,offset);return msg.buffer.length},write:function(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close:function(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname:function(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer:function(sock,addr,port){var ws;if(typeof addr=="object"){ws=addr;addr=null;port=null}if(ws){if(ws._socket){addr=ws._socket.remoteAddress;port=ws._socket.remotePort}else{var result=/ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url);if(!result){throw new Error("WebSocket URL must be in the format ws(s)://address:port")}addr=result[1];port=parseInt(result[2],10)}}else{try{var runtimeConfig=Module["websocket"]&&"object"===typeof Module["websocket"];var url="ws:#".replace("#","//");if(runtimeConfig){if("string"===typeof Module["websocket"]["url"]){url=Module["websocket"]["url"]}}if(url==="ws://"||url==="wss://"){var parts=addr.split("/");url=url+parts[0]+":"+port+"/"+parts.slice(1).join("/")}var subProtocols="binary";if(runtimeConfig){if("string"===typeof Module["websocket"]["subprotocol"]){subProtocols=Module["websocket"]["subprotocol"]}}var opts=undefined;if(subProtocols!=="null"){subProtocols=subProtocols.replace(/^ +| +$/g,"").split(/ *, */);opts=subProtocols}if(runtimeConfig&&null===Module["websocket"]["subprotocol"]){subProtocols="null";opts=undefined}var WebSocketConstructor;if(ENVIRONMENT_IS_NODE){WebSocketConstructor=require("ws")}else{WebSocketConstructor=WebSocket}ws=new WebSocketConstructor(url,opts);ws.binaryType="arraybuffer"}catch(e){throw new FS.ErrnoError(23)}}var peer={addr:addr,port:port,socket:ws,dgram_send_queue:[]};SOCKFS.websocket_sock_ops.addPeer(sock,peer);SOCKFS.websocket_sock_ops.handlePeerEvents(sock,peer);if(sock.type===2&&typeof sock.sport!="undefined"){peer.dgram_send_queue.push(new Uint8Array([255,255,255,255,"p".charCodeAt(0),"o".charCodeAt(0),"r".charCodeAt(0),"t".charCodeAt(0),(sock.sport&65280)>>8,sock.sport&255]))}return peer},getPeer:function(sock,addr,port){return sock.peers[addr+":"+port]},addPeer:function(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer:function(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents:function(sock,peer){var first=true;var handleOpen=function(){Module["websocket"].emit("open",sock.stream.fd);try{var queued=peer.dgram_send_queue.shift();while(queued){peer.socket.send(queued);queued=peer.dgram_send_queue.shift()}}catch(e){peer.socket.close()}};function handleMessage(data){if(typeof data=="string"){var encoder=new TextEncoder;data=encoder.encode(data)}else{assert(data.byteLength!==undefined);if(data.byteLength==0){return}else{data=new Uint8Array(data)}}var wasfirst=first;first=false;if(wasfirst&&data.length===10&&data[0]===255&&data[1]===255&&data[2]===255&&data[3]===255&&data[4]==="p".charCodeAt(0)&&data[5]==="o".charCodeAt(0)&&data[6]==="r".charCodeAt(0)&&data[7]==="t".charCodeAt(0)){var newport=data[8]<<8|data[9];SOCKFS.websocket_sock_ops.removePeer(sock,peer);peer.port=newport;SOCKFS.websocket_sock_ops.addPeer(sock,peer);return}sock.recv_queue.push({addr:peer.addr,port:peer.port,data:data});Module["websocket"].emit("message",sock.stream.fd)}if(ENVIRONMENT_IS_NODE){peer.socket.on("open",handleOpen);peer.socket.on("message",function(data,isBinary){if(!isBinary){return}handleMessage(new Uint8Array(data).buffer)});peer.socket.on("close",function(){Module["websocket"].emit("close",sock.stream.fd)});peer.socket.on("error",function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])})}else{peer.socket.onopen=handleOpen;peer.socket.onclose=function(){Module["websocket"].emit("close",sock.stream.fd)};peer.socket.onmessage=function peer_socket_onmessage(event){handleMessage(event.data)};peer.socket.onerror=function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll:function(sock){if(sock.type===1&&sock.server){return sock.pending.length?64|1:0}var mask=0;var dest=sock.type===1?SOCKFS.websocket_sock_ops.getPeer(sock,sock.daddr,sock.dport):null;if(sock.recv_queue.length||!dest||dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=64|1}if(!dest||dest&&dest.socket.readyState===dest.socket.OPEN){mask|=4}if(dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=16}return mask},ioctl:function(sock,request,arg){switch(request){case 21531:var bytes=0;if(sock.recv_queue.length){bytes=sock.recv_queue[0].data.length}HEAP32[arg>>2]=bytes;return 0;default:return 28}},close:function(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i>2]=value;return value}function inetNtop4(addr){return(addr&255)+"."+(addr>>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255)}function inetNtop6(ints){var str="";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part="";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str="::ffff:";str+=v4part;return str}if(parts[5]===0){str="::";if(v4part==="0.0.0.0")v4part="";if(v4part==="0.0.0.1")v4part="1";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word>1];var port=_ntohs(HEAPU16[sa+2>>1]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=HEAP32[sa+4>>2];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[HEAP32[sa+8>>2],HEAP32[sa+12>>2],HEAP32[sa+16>>2],HEAP32[sa+20>>2]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family:family,addr:addr,port:port}}function inetPton4(str){var b=str.split(".");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0}function jstoi_q(str){return parseInt(str)}function inetPton6(str){var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str==="::"){return[0,0,0,0,0,0,0,0]}if(str.startsWith("::")){str=str.replace("::","Z:")}else{str=str.replace("::",":Z:")}if(str.indexOf(".")>0){str=str.replace(new RegExp("[.]","g"),":");words=str.split(":");words[words.length-4]=jstoi_q(words[words.length-4])+jstoi_q(words[words.length-3])*256;words[words.length-3]=jstoi_q(words[words.length-2])+jstoi_q(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(":")}offset=0;z=0;for(w=0;w>1]=2;return 0}case 6:case 7:return 0;case 16:case 8:return-28;case 9:setErrNo(28);return-1;default:{return-28}}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___syscall_statfs64(0,size,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function convertI32PairToI53Checked(lo,hi){return hi+2097152>>>0<4194305-!!lo?(lo>>>0)+hi*4294967296:NaN}function ___syscall_ftruncate64(fd,length_low,length_high){try{var length=convertI32PairToI53Checked(length_low,length_high);if(isNaN(length))return-61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size>>0,(tempDouble=id,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos>>2]=tempI64[0],HEAP32[dirp+pos+4>>2]=tempI64[1];tempI64=[(idx+1)*struct_size>>>0,(tempDouble=(idx+1)*struct_size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos+8>>2]=tempI64[0],HEAP32[dirp+pos+12>>2]=tempI64[1];HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18>>0]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:case 21505:{if(!stream.tty)return-59;return 0}case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:{if(!stream.tty)return-59;return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.get();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.get();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;return 0}case 21524:{if(!stream.tty)return-59;return 0}default:abort("bad ioctl syscall "+op)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~4352;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?SYSCALLS.get():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function writeSockaddr(sa,family,addr,port,addrlen){switch(family){case 2:addr=inetPton4(addr);zeroMemory(sa,16);if(addrlen){HEAP32[addrlen>>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);if(addrlen){HEAP32[addrlen>>2]=28}HEAP32[sa>>2]=family;HEAP32[sa+8>>2]=addr[0];HEAP32[sa+12>>2]=addr[1];HEAP32[sa+16>>2]=addr[2];HEAP32[sa+20>>2]=addr[3];HEAP16[sa+2>>1]=_htons(port);break;default:return 5}return 0}function ___syscall_recvfrom(fd,buf,len,flags,addr,addrlen){try{var sock=getSocketFromFD(fd);var msg=sock.sock_ops.recvmsg(sock,len);if(!msg)return 0;if(addr){var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(msg.addr),msg.port,addrlen)}HEAPU8.set(msg.buffer,buf);return msg.buffer.byteLength}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_sendto(fd,message,length,flags,addr,addr_len){try{var sock=getSocketFromFD(fd);var dest=getSocketAddress(addr,addr_len,true);if(!dest){return FS.write(sock.stream,HEAP8,message,length)}else{return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);if(!times){var atime=Date.now();var mtime=atime}else{var seconds=HEAP32[times>>2];var nanoseconds=HEAP32[times+4>>2];atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=8;seconds=HEAP32[times>>2];nanoseconds=HEAP32[times+4>>2];mtime=seconds*1e3+nanoseconds/(1e3*1e3)}FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __dlinit(main_dso_handle){}var dlopenMissingError="To use dlopen, you need enable dynamic linking, see https://github.com/emscripten-core/emscripten/wiki/Linking";function __dlopen_js(filename,flag){abort(dlopenMissingError)}function __emscripten_date_now(){return Date.now()}var nowIsMonotonic=true;function __emscripten_get_now_is_monotonic(){return nowIsMonotonic}function __gmtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}function __localtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var start=new Date(date.getFullYear(),0,1);var yday=(date.getTime()-start.getTime())/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}function __mmap_js(len,prot,flags,fd,off,allocated){try{var stream=FS.getStream(fd);if(!stream)return-8;var res=FS.mmap(stream,len,off,prot,flags);var ptr=res.ptr;HEAP32[allocated>>2]=res.allocated;return ptr}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __msync_js(addr,len,flags,fd){try{SYSCALLS.doMsync(addr,FS.getStream(fd),len,flags,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __munmap_js(addr,len,prot,flags,fd,offset){try{var stream=FS.getStream(fd);if(stream){if(prot&2){SYSCALLS.doMsync(addr,stream,len,flags,offset)}FS.munmap(stream)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function _tzset_impl(timezone,daylight,tzname){var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAP32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);function extractZone(date){var match=date.toTimeString().match(/\(([A-Za-z ]+)\)$/);return match?match[1]:"GMT"}var winterName=extractZone(winter);var summerName=extractZone(summer);var winterNamePtr=allocateUTF8(winterName);var summerNamePtr=allocateUTF8(summerName);if(summerOffset>2]=winterNamePtr;HEAPU32[tzname+4>>2]=summerNamePtr}else{HEAPU32[tzname>>2]=summerNamePtr;HEAPU32[tzname+4>>2]=winterNamePtr}}function __tzset_js(timezone,daylight,tzname){if(__tzset_js.called)return;__tzset_js.called=true;_tzset_impl(timezone,daylight,tzname)}function _abort(){abort("")}var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function(buffer,bufferLength){const needTempBuf=typeof SharedArrayBuffer!=="undefined"&&Module.HEAPU8.buffer instanceof SharedArrayBuffer;const buf=needTempBuf?new ArrayBuffer(bufferLength):Module.HEAPU8.buffer;const offset=needTempBuf?0:buffer;for(let i=0;i{var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6}}else if(typeof dateNow!="undefined"){_emscripten_get_now=dateNow}else _emscripten_get_now=()=>performance.now();function _emscripten_get_now_res(){if(ENVIRONMENT_IS_NODE){return 1}else if(typeof dateNow!="undefined"){return 1e3}else return 1e3}function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}let alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}var ENV={};function getExecutableName(){return thisProgram||"./this.program"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+"="+env[x])}getEnvStrings.strings=strings}return getEnvStrings.strings}function _environ_get(__environ,environ_buf){var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAPU32[penviron_buf_size>>2]=bufSize;return 0}function _exit(status){exit(status)}function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4;HEAP8[pbuf>>0]=type;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doReadv(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doWritev(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr}return ret}function _fd_pwrite(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt,offset);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1];if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops&&stream.stream_ops.fsync){return-stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _getTempRet0(){return getTempRet0()}function _llvm_eh_typeid_for(type){return type}function _mono_set_timeout(){return __dotnet_runtime.__linker_exports.mono_set_timeout.apply(__dotnet_runtime,arguments)}function _mono_wasm_add_dbg_command_received(){return __dotnet_runtime.__linker_exports.mono_wasm_add_dbg_command_received.apply(__dotnet_runtime,arguments)}function _mono_wasm_asm_loaded(){return __dotnet_runtime.__linker_exports.mono_wasm_asm_loaded.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_cs_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_cs_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_js_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_js_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_create_cs_owned_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_create_cs_owned_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_debugger_log(){return __dotnet_runtime.__linker_exports.mono_wasm_debugger_log.apply(__dotnet_runtime,arguments)}function _mono_wasm_fire_debugger_agent_message(){return __dotnet_runtime.__linker_exports.mono_wasm_fire_debugger_agent_message.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_global_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_global_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_bound_function(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_bound_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_blazor(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_blazor.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_with_args_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_with_args_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_marshal_promise(){return __dotnet_runtime.__linker_exports.mono_wasm_marshal_promise.apply(__dotnet_runtime,arguments)}function _mono_wasm_release_cs_owned_object(){return __dotnet_runtime.__linker_exports.mono_wasm_release_cs_owned_object.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_entrypoint_breakpoint(){return __dotnet_runtime.__linker_exports.mono_wasm_set_entrypoint_breakpoint.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_trace_logger(){return __dotnet_runtime.__linker_exports.mono_wasm_trace_logger.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_from_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_from_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_to_array_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_to_array_ref.apply(__dotnet_runtime,arguments)}function _schedule_background_exec(){return __dotnet_runtime.__linker_exports.schedule_background_exec.apply(__dotnet_runtime,arguments)}function _setTempRet0(val){setTempRet0(val)}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value=="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}else{return thisDate.getFullYear()}}else{return thisDate.getFullYear()-1}}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}else{return"PM"}},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&__isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!__isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":function(date){return date.tm_wday},"%W":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":function(date){return(date.tm_year+1900).toString().substring(2)},"%Y":function(date){return date.tm_year+1900},"%z":function(date){var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.staticInit();Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_readFile"]=FS.readFile;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_unlink"]=FS.unlink;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;let __dotnet_replacement_PThread=false?{}:undefined;if(false){__dotnet_replacement_PThread.loadWasmModuleToWorker=PThread.loadWasmModuleToWorker;__dotnet_replacement_PThread.threadInitTLS=PThread.threadInitTLS;__dotnet_replacement_PThread.allocateUnusedWorker=PThread.allocateUnusedWorker}let __dotnet_replacements={scriptUrl:import.meta.url,fetch:globalThis.fetch,require:require,updateGlobalBufferAndViews:updateGlobalBufferAndViews,pthreadReplacements:__dotnet_replacement_PThread};if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise=import("module").then(mod=>mod.createRequire(import.meta.url))}let __dotnet_exportedAPI=__dotnet_runtime.__initializeImportsAndExports({isGlobal:false,isNode:ENVIRONMENT_IS_NODE,isWorker:ENVIRONMENT_IS_WORKER,isShell:ENVIRONMENT_IS_SHELL,isWeb:ENVIRONMENT_IS_WEB,isPThread:false,quit_:quit_,ExitStatus:ExitStatus,requirePromise:__dotnet_replacements.requirePromise},{mono:MONO,binding:BINDING,internal:INTERNAL,module:Module,marshaled_imports:IMPORTS},__dotnet_replacements,__callbackAPI);updateGlobalBufferAndViews=__dotnet_replacements.updateGlobalBufferAndViews;var fetch=__dotnet_replacements.fetch;_scriptDir=__dirname=scriptDirectory=__dotnet_replacements.scriptDirectory;if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise.then(someRequire=>{require=someRequire})}var noExitRuntime=__dotnet_replacements.noExitRuntime;if(false){PThread.loadWasmModuleToWorker=__dotnet_replacements.pthreadReplacements.loadWasmModuleToWorker;PThread.threadInitTLS=__dotnet_replacements.pthreadReplacements.threadInitTLS;PThread.allocateUnusedWorker=__dotnet_replacements.pthreadReplacements.allocateUnusedWorker}var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var decodeBase64=typeof atob=="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}Module["run"]=run;function exit(status,implicit){EXITSTATUS=status;procExit(status)}function procExit(code){EXITSTATUS=code;if(!keepRuntimeAlive()){if(Module["onExit"])Module["onExit"](code);ABORT=true}quit_(code,new ExitStatus(code))}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run();createDotnetRuntime.ready=createDotnetRuntime.ready.then(()=>{return __dotnet_exportedAPI});
+
+
+ return createDotnetRuntime.ready
+}
+);
+})();
+export default createDotnetRuntime;
+const MONO = {}, BINDING = {}, INTERNAL = {}, IMPORTS = {};
+
+// TODO duplicated from emscripten, so we can use them in the __setEmscriptenEntrypoint
+var ENVIRONMENT_IS_WEB = typeof window == 'object';
+var ENVIRONMENT_IS_WORKER = typeof importScripts == 'function';
+var ENVIRONMENT_IS_NODE = typeof process == 'object' && typeof process.versions == 'object' && typeof process.versions.node == 'string';
+var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER;
+
+__dotnet_runtime.__setEmscriptenEntrypoint(createDotnetRuntime, { isNode: ENVIRONMENT_IS_NODE, isShell: ENVIRONMENT_IS_SHELL, isWeb: ENVIRONMENT_IS_WEB, isWorker: ENVIRONMENT_IS_WORKER });
+const dotnet = __dotnet_runtime.moduleExports.dotnet;
+const exit = __dotnet_runtime.moduleExports.exit;
+export { dotnet, exit, INTERNAL };
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js.gz
new file mode 100644
index 000000000..b6a7e7f38
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat
new file mode 100644
index 000000000..2e1c6dd61
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat.gz
new file mode 100644
index 000000000..0991f8159
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm
new file mode 100644
index 000000000..b48cfb421
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm.gz
new file mode 100644
index 000000000..a04516d0b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat
new file mode 100644
index 000000000..54093bdd3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat.gz
new file mode 100644
index 000000000..32378d46b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat
new file mode 100644
index 000000000..118a60d56
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat.gz
new file mode 100644
index 000000000..97a8d5a68
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat
new file mode 100644
index 000000000..e4c1c9108
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat.gz
new file mode 100644
index 000000000..2ee264219
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat
new file mode 100644
index 000000000..87b08e08a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat.gz
new file mode 100644
index 000000000..4c6dd461f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll
new file mode 100644
index 000000000..b655ce1d7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz
new file mode 100644
index 000000000..6f8620f3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll
new file mode 100644
index 000000000..13b1f8c5c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz
new file mode 100644
index 000000000..b20dbe794
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll
new file mode 100644
index 000000000..ee9a10e48
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll.gz
new file mode 100644
index 000000000..37e906384
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll
new file mode 100644
index 000000000..b66a993aa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll.gz
new file mode 100644
index 000000000..9568e2def
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 000000000..4257f4bc6
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfo.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfo.cs
new file mode 100644
index 000000000..c3fb820d1
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("GraphSample")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("GraphSample")]
+[assembly: System.Reflection.AssemblyTitleAttribute("GraphSample")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfoInputs.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfoInputs.cache
new file mode 100644
index 000000000..b66cef083
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+fd9cbe652d8aab94e20a580884b0002018eb7a73
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GeneratedMSBuildEditorConfig.editorconfig b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 000000000..0aa379593
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,135 @@
+is_global = true
+build_property.PublishFluentIconAssets = true
+build_property.PublishFluentEmojiAssets = false
+build_property.FluentEmojiStyles =
+build_property.FluentEmojiGroups =
+build_property.FluentIconSizes = 10,12,16,20,24,28,32,48
+build_property.FluentIconVariants = Filled,Regular
+build_property.TargetFramework = net7.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization = false
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = browser
+build_property.RootNamespace = GraphSample
+build_property.RootNamespace = GraphSample
+build_property.ProjectDir = C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\
+build_property.RazorLangVersion = 7.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample
+build_property._RazorSourceGeneratorDebug =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/App.razor]
+build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/ApplicationTracker.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQXBwbGljYXRpb25UcmFja2VyLnJhem9y
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Authentication.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQXV0aGVudGljYXRpb24ucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Calendar.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2FsZW5kYXIucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Chat.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2hhdC5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Dashbar.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRGFzaGJhci5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/EditOneNote.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdE9uZU5vdGUucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Index.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Schedulingmeeting.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2NoZWR1bGluZ21lZXRpbmcucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/SignIn.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2lnbkluLnJhem9y
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Teams.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVGVhbXMucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/TestAI.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVGVzdEFJLnJhem9y
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/ToDo.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVG9Eby5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Transcript.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVHJhbnNjcmlwdC5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/UniversalSearch.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVW5pdmVyc2FsU2VhcmNoLnJhem9y
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Weather.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcV2VhdGhlci5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor]
+build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXEFkZEN1c3RvbURlc2NyaXB0aW9uUG9wdXAucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor]
+build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXEFkZFRpbWVsaW5lUG9wdXAucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor]
+build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXEFzc2Vzc21lbnRJbnB1dFBvcHVwLnJhem9y
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/InputPopup.razor]
+build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXElucHV0UG9wdXAucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor]
+build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXFJlbW92ZVRpbWVsaW5lUG9wdXAucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor]
+build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXFVwZGF0ZURhdGVQb3B1cC5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Shared/LoginDisplay.razor]
+build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXExvZ2luRGlzcGxheS5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Shared/RedirectToLogin.razor]
+build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFJlZGlyZWN0VG9Mb2dpbi5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/_Imports.razor]
+build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Overview.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcT3ZlcnZpZXcucmF6b3I=
+build_metadata.AdditionalFiles.CssScope = b-omvmab0aii
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/SummarizeFiles.razor]
+build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU3VtbWFyaXplRmlsZXMucmF6b3I=
+build_metadata.AdditionalFiles.CssScope = b-8cwxo513pf
+
+[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Shared/MainLayout.razor]
+build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
+build_metadata.AdditionalFiles.CssScope = b-bl0j7m4p9v
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GlobalUsings.g.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GlobalUsings.g.cs
new file mode 100644
index 000000000..0103b5925
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GlobalUsings.g.cs
@@ -0,0 +1,11 @@
+//
+global using global::Microsoft.Extensions.Configuration;
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Microsoft.Extensions.Logging;
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.MvcApplicationPartsAssemblyInfo.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 000000000..e69de29bb
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.assets.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.assets.cache
new file mode 100644
index 000000000..cae9a28ef
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.assets.cache differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.AssemblyReference.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.AssemblyReference.cache
new file mode 100644
index 000000000..cc94fd62e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.AssemblyReference.cache differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CopyComplete b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CopyComplete
new file mode 100644
index 000000000..e69de29bb
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CoreCompileInputs.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CoreCompileInputs.cache
new file mode 100644
index 000000000..fcd6afa7c
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+2932ca2cb29a4f0d502e17951739fc394972d1ac
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.FileListAbsolute.txt b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.FileListAbsolute.txt
new file mode 100644
index 000000000..8d3cc5560
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.FileListAbsolute.txt
@@ -0,0 +1,2104 @@
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.boot.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\package-lock.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\package.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.staticwebassets.runtime.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.pdb
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.SecurityToken.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.OpenAI.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.TextAnalytics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Azure.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\AzureOpenAIClient.Http.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Blazored.Modal.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\BlazorInputFile.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ChartJSCore.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\DnsClient.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Imaging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Pdf.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Authorization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Authorization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Forms.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Metadata.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.WebUtilities.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Authentication.WebAssembly.Msal.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Binder.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.FileExtensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Physical.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileSystemGlobbing.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Hosting.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Http.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Options.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Fast.Components.FluentUI.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Beta.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.WebAssembly.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Abstractions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Authentication.Azure.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Http.HttpClientLibrary.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Form.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Text.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Net.Http.Headers.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Bson.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Newtonsoft.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\DocumentFormat.OpenXml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\BouncyCastle.Crypto.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\SharpCompress.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Snappier.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Packaging.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipelines.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.Data.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Tavis.UriTemplates.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\TimeZoneConverter.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ZstdSharp.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Imaging.resources.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Pdf.resources.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.CSharp.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Registry.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.AppContext.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Buffers.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Concurrent.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Immutable.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.NonGeneric.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Specialized.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Annotations.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.DataAnnotations.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.EventBasedAsync.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.TypeConverter.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Configuration.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Console.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Core.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.Common.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.DataSetExtensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Contracts.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Debug.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.DiagnosticSource.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.FileVersionInfo.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Process.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.StackTrace.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TextWriterTraceListener.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tools.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TraceSource.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tracing.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Dynamic.Runtime.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Asn1.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Tar.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Calendars.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.Brotli.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.FileSystem.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.ZipFile.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.AccessControl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.DriveInfo.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Watcher.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.IsolatedStorage.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.MemoryMappedFiles.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.AccessControl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.UnmanagedMemoryStream.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Expressions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Parallel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Queryable.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.HttpListener.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Mail.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NameResolution.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NetworkInformation.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Ping.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Quic.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Requests.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Security.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.ServicePoint.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Sockets.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebClient.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebHeaderCollection.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebProxy.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.Client.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.Vectors.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ObjectModel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.DataContractSerialization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Uri.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.Linq.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.DispatchProxy.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.ILGeneration.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.Lightweight.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Metadata.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.TypeExtensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Reader.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.ResourceManager.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Writer.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.Unsafe.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.VisualC.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Handles.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.JavaScript.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.RuntimeInformation.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Intrinsics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Loader.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Numerics.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Formatters.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Xml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.AccessControl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Claims.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Algorithms.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Cng.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Csp.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Encoding.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.OpenSsl.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Primitives.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.X509Certificates.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.Windows.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.SecureString.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceModel.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceProcess.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.CodePages.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encodings.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Json.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.RegularExpressions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Channels.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Overlapped.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Dataflow.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Extensions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Parallel.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Thread.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.ThreadPool.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Timer.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.Local.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ValueTuple.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.HttpUtility.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Windows.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Linq.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.ReaderWriter.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Serialization.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XDocument.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.XDocument.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlDocument.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlSerializer.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\WindowsBase.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\mscorlib.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\netstandard.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.CoreLib.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.js
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.timezones.blat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.wasm
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt_CJK.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt_EFIGS.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt_no_CJK.dat
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.pdb
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.AssemblyReference.cache
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfoInputs.cache
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfo.cs
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CoreCompileInputs.cache
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\c+Z0g9Jd.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\phm29G91.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pghmNRvs.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7+NmSqS6.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MC7F1EXR.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ys2HsIxk.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3RGQuDHV.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hDAoPmg+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8xSaKK2f.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qtLOehkv.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dF7+Cn0+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\T02qCSL8.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nw4hF8e4.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vHFCIeEH.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GV2n5d78.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6chkLOwn.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AFZMHXnU.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8GFzTuVa.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Re+7LMz0.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Qpbt+CNX.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6bAS78QA.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OwnWA+d9.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8vyJHDuB.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4IbJOvmG.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5xWImhhp.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\SyQx+l1x.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PWM2F7l6.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PSzKFYQZ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\luQkTI9I.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\aOW5GZ36.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8m1yIPR7.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2gtVL9b2.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I1MLYecy.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Y7nD3u55.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pCfoiMIR.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ersvoADk.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jL+JS45b.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dNEnteD5.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\IzxZx+Zd.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AiS0rqlT.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\23ROlzFb.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cv8v4Gsf.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FLR8M+Ah.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iD6mhcW+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\D+1RZpX+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tDSRJfdl.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Al28oHqe.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pBXJTrNX.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8I2FPv+4.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\buLwhqjv.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AyefZHy+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UOQe8Dq0.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9OGW3CR+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gDnazL5i.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7EeleHRx.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\q+5LDeSN.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qlam8W+O.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9tAoG1Uq.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\sNCgE1gc.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\22VaScSs.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vmGJlw0k.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Tca26kuV.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Gw2xDHXY.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xwCIKg4r.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\doP+4BwJ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eoXnBbVy.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gfZzpc+E.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\bCA1HaC4.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MgddUi+V.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TBn7dkuj.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tQEbKKnv.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\56lJo9NZ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MdnBBtMp.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CLacD+ws.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CpaZ+yDJ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3r5GoTSy.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u0AXn6bb.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YTzkAgfa.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\DQMhD7xB.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3O+cKOiM.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\airhYZR7.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1i1sXsPJ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qWgUeh2N.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\77KXf+G2.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qQ8gsDqb.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I2YQl34K.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZK+fHbG.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cnKLVun6.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5JBFDoaT.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\meTe+alg.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xssRNhxe.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Uai5tZzn.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Yj5BZpbw.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PHTiPb3I.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3GS0+Xc0.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Hci14aiA.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MXG25MIc.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WUcFp4sY.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nNpXywCp.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9xCfsmCY.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kXOEfuAj.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\toKSBfJx.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ml7uO+rW.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zwebL8CJ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3o4c9yGb.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\R2PLP3Qe.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KV+7rjd+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4XMlHwCM.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AAJPMc+q.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5aZHroMB.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XNRSaCAE.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ShbALnVZ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HB8DHftC.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N5fruOuj.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\QmI3N8oM.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ww6LdwW+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N0gjLoUT.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wnjmgrOa.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6SYFWDbs.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpGGxn+A.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fY+6+YAq.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2z3fA+Xs.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\a7NX+6Gj.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vbyEHz+f.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ysVyZ++O.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nOj7PPDe.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\0F3THOoe.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C3+iefBz.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ASazdaOA.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8UzvLwf+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\62L4R0lC.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2cjWzD2X.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eXag2ZQC.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rLFEcJ3K.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\40KW1Jvc.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\r5tIrKQJ.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eMg4HloL.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dhu3kA+T.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HOJzY8yw.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1kxNreRR.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\azxx+Ymt.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YqyTTqnp.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hbtsH5K4.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\d1EIfJy5.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qf8xv0rk.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XGcG3D9f.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ryPTNASP.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jplbLOUI.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iv7rlSof.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g0EfU1lN.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yW+OvcWi.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FC9BWSVd.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UlOCwkJy.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wCf576wv.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zH8vquy4.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\lf1J5B9O.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AOvOJax+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WGIV8QF4.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f2DKowff.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s45K7klr.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\y9tSwMK5.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xhJdd8MR.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yR+Yk9oU.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5Wvbiv0t.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eglFIRt8.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RNhSgpar.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hwcDQ0wD.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\NdvF5+0U.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s0WbNtC8.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tZlcgzg+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eV8sjNpC.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kJId7wuk.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\M39mQ8FI.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\p4ttQeYL.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qGYkmnM5.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Pxx+hP2A.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XtcIMN1+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1dQeDFxx.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9AzsP+D9.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\erUA+NWw.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RP4BO9dU.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VjzG04qc.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\w4rVORDG.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kIo+3vTu.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+X0clzuq.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpOnjY3E.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zfFUKSwe.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZjUAGYF.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VLryMgNN.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIKlb2mF.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\K3Vy+8xS.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\42yeJ3X6.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Mx4rV4K6.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\znqmWMdE.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Dts75qHk.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fD3oFEeK.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nN9D7Td.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PdVsjePE.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\uFYGyXgI.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cTauOqcc.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+R2yTmhK.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gPl5Gair.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nAdAk7p.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C8UJ3g6+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ab9R18co.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UsxFDlWI.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PesF4wKM.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EYahmw6e.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EUxiBhbo.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JLqYeE98.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AWyDvF+9.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tALjiTtN.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TLqbhHzt.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3FX3z+Y3.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fyIBe1B+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JQTwC+Wp.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+iaqeheV.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8zwHBSD0.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VadgPOEj.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+2Mx6CNa.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIsU3WPu.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eD8KvJQ3.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g+MJNN4k.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ith6wL5e.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xZTvHMo7.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BvfzaxMj.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ve2DCp+Y.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KQ+CIlck.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ZqnBCdvU.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TAoxl7R3.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VAFs0L7p.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\P+OcG5X0.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u2NKCkEW.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\moXpYGUT.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2dQHx8B+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\k6c5l4Zs.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BJ8SPSAw.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1EpVnd1F.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WSd8vvJ+.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M6vSMB4.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TXBZ5Zv2.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GF4ojFS8.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\j4MZS3uC.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xKS2CAdA.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OTY+vEhj.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M7Mk+br.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pFQ6kByw.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YjoXTRDF.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f+LGd4Hi.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CXfYACeM.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1lJIHL1p.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\n5D1Bw2m.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+rFJtA3r.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zklOABeC.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+iSgVwEB.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rUmG1DOI.gz
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\blazor.boot.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.build.GraphSample.props
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.GraphSample.props
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.GraphSample.props
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.pack.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.build.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.development.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\Overview.razor.rz.scp.css
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\SummarizeFiles.razor.rz.scp.css
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\bundle\GraphSample.styles.css
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\projectbundle\GraphSample.bundle.scp.css
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\jsmodules\jsmodules.build.manifest.json
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CopyComplete
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\refint\GraphSample.dll
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.pdb
+C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\ref\GraphSample.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.boot.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\package-lock.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\package.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.staticwebassets.runtime.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.pdb
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.SecurityToken.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.OpenAI.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.TextAnalytics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Azure.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\AzureOpenAIClient.Http.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Blazored.Modal.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\BlazorInputFile.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ChartJSCore.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\DnsClient.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Imaging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Pdf.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Authorization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Authorization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Forms.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Metadata.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.WebUtilities.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Authentication.WebAssembly.Msal.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Binder.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.FileExtensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Physical.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileSystemGlobbing.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Hosting.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Http.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Options.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Fast.Components.FluentUI.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Beta.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.WebAssembly.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Abstractions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Authentication.Azure.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Http.HttpClientLibrary.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Form.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Text.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Net.Http.Headers.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Bson.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Newtonsoft.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\DocumentFormat.OpenXml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\BouncyCastle.Crypto.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\SharpCompress.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Snappier.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Packaging.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipelines.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.Data.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Tavis.UriTemplates.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\TimeZoneConverter.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ZstdSharp.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Imaging.resources.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Pdf.resources.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.CSharp.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Registry.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.AppContext.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Buffers.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Concurrent.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Immutable.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.NonGeneric.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Specialized.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Annotations.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.DataAnnotations.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.EventBasedAsync.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.TypeConverter.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Configuration.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Console.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Core.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.Common.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.DataSetExtensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Contracts.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Debug.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.DiagnosticSource.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.FileVersionInfo.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Process.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.StackTrace.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TextWriterTraceListener.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tools.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TraceSource.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tracing.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Dynamic.Runtime.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Asn1.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Tar.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Calendars.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.Brotli.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.FileSystem.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.ZipFile.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.AccessControl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.DriveInfo.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Watcher.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.IsolatedStorage.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.MemoryMappedFiles.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.AccessControl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.UnmanagedMemoryStream.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Expressions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Parallel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Queryable.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.HttpListener.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Mail.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NameResolution.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NetworkInformation.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Ping.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Quic.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Requests.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Security.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.ServicePoint.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Sockets.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebClient.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebHeaderCollection.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebProxy.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.Client.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.Vectors.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ObjectModel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.DataContractSerialization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Uri.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.Linq.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.DispatchProxy.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.ILGeneration.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.Lightweight.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Metadata.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.TypeExtensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Reader.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.ResourceManager.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Writer.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.Unsafe.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.VisualC.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Handles.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.JavaScript.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.RuntimeInformation.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Intrinsics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Loader.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Numerics.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Formatters.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Xml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.AccessControl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Claims.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Algorithms.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Cng.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Csp.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Encoding.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.OpenSsl.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Primitives.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.X509Certificates.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.Windows.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.SecureString.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceModel.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceProcess.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.CodePages.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encodings.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Json.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.RegularExpressions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Channels.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Overlapped.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Dataflow.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Extensions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Parallel.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Thread.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.ThreadPool.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Timer.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.Local.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ValueTuple.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.HttpUtility.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Windows.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Linq.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.ReaderWriter.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Serialization.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XDocument.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.XDocument.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlDocument.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlSerializer.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\WindowsBase.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\mscorlib.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\netstandard.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.CoreLib.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.js
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.timezones.blat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.wasm
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt_CJK.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt_EFIGS.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt_no_CJK.dat
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.pdb
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.AssemblyReference.cache
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfoInputs.cache
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfo.cs
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CoreCompileInputs.cache
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\c+Z0g9Jd.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\phm29G91.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pghmNRvs.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7+NmSqS6.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MC7F1EXR.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ys2HsIxk.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3RGQuDHV.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hDAoPmg+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8xSaKK2f.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qtLOehkv.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dF7+Cn0+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\T02qCSL8.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nw4hF8e4.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vHFCIeEH.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GV2n5d78.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6chkLOwn.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AFZMHXnU.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8GFzTuVa.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Re+7LMz0.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Qpbt+CNX.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6bAS78QA.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OwnWA+d9.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8vyJHDuB.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4IbJOvmG.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5xWImhhp.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\SyQx+l1x.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PWM2F7l6.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PSzKFYQZ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\luQkTI9I.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\aOW5GZ36.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8m1yIPR7.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2gtVL9b2.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I1MLYecy.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Y7nD3u55.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pCfoiMIR.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ersvoADk.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jL+JS45b.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dNEnteD5.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\IzxZx+Zd.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AiS0rqlT.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\23ROlzFb.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cv8v4Gsf.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FLR8M+Ah.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iD6mhcW+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\D+1RZpX+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tDSRJfdl.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Al28oHqe.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pBXJTrNX.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8I2FPv+4.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\buLwhqjv.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AyefZHy+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UOQe8Dq0.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9OGW3CR+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gDnazL5i.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7EeleHRx.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\q+5LDeSN.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qlam8W+O.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9tAoG1Uq.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\sNCgE1gc.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\22VaScSs.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vmGJlw0k.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Tca26kuV.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Gw2xDHXY.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xwCIKg4r.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\doP+4BwJ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eoXnBbVy.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gfZzpc+E.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\bCA1HaC4.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MgddUi+V.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TBn7dkuj.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tQEbKKnv.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\56lJo9NZ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MdnBBtMp.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CLacD+ws.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CpaZ+yDJ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3r5GoTSy.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u0AXn6bb.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YTzkAgfa.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\DQMhD7xB.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3O+cKOiM.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\airhYZR7.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1i1sXsPJ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qWgUeh2N.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\77KXf+G2.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qQ8gsDqb.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I2YQl34K.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZK+fHbG.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cnKLVun6.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5JBFDoaT.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\meTe+alg.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xssRNhxe.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Uai5tZzn.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Yj5BZpbw.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PHTiPb3I.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3GS0+Xc0.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Hci14aiA.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MXG25MIc.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WUcFp4sY.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nNpXywCp.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9xCfsmCY.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kXOEfuAj.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\toKSBfJx.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ml7uO+rW.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zwebL8CJ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3o4c9yGb.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\R2PLP3Qe.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KV+7rjd+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4XMlHwCM.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AAJPMc+q.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5aZHroMB.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XNRSaCAE.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ShbALnVZ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HB8DHftC.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N5fruOuj.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\QmI3N8oM.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ww6LdwW+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N0gjLoUT.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wnjmgrOa.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6SYFWDbs.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpGGxn+A.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fY+6+YAq.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2z3fA+Xs.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\a7NX+6Gj.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vbyEHz+f.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ysVyZ++O.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nOj7PPDe.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\0F3THOoe.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C3+iefBz.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ASazdaOA.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8UzvLwf+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\62L4R0lC.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2cjWzD2X.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eXag2ZQC.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rLFEcJ3K.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\40KW1Jvc.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\r5tIrKQJ.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eMg4HloL.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dhu3kA+T.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HOJzY8yw.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1kxNreRR.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\azxx+Ymt.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YqyTTqnp.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hbtsH5K4.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\d1EIfJy5.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qf8xv0rk.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XGcG3D9f.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ryPTNASP.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jplbLOUI.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iv7rlSof.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g0EfU1lN.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yW+OvcWi.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FC9BWSVd.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UlOCwkJy.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wCf576wv.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zH8vquy4.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\lf1J5B9O.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AOvOJax+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WGIV8QF4.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f2DKowff.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s45K7klr.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\y9tSwMK5.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xhJdd8MR.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yR+Yk9oU.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5Wvbiv0t.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eglFIRt8.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RNhSgpar.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hwcDQ0wD.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\NdvF5+0U.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s0WbNtC8.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tZlcgzg+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eV8sjNpC.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kJId7wuk.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\M39mQ8FI.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\p4ttQeYL.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qGYkmnM5.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Pxx+hP2A.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XtcIMN1+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1dQeDFxx.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9AzsP+D9.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\erUA+NWw.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RP4BO9dU.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VjzG04qc.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\w4rVORDG.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kIo+3vTu.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+X0clzuq.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpOnjY3E.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zfFUKSwe.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZjUAGYF.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VLryMgNN.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIKlb2mF.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\K3Vy+8xS.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\42yeJ3X6.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Mx4rV4K6.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\znqmWMdE.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Dts75qHk.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fD3oFEeK.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nN9D7Td.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PdVsjePE.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\uFYGyXgI.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cTauOqcc.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+R2yTmhK.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gPl5Gair.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nAdAk7p.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C8UJ3g6+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ab9R18co.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UsxFDlWI.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PesF4wKM.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EYahmw6e.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EUxiBhbo.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JLqYeE98.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AWyDvF+9.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tALjiTtN.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TLqbhHzt.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3FX3z+Y3.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fyIBe1B+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JQTwC+Wp.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+iaqeheV.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8zwHBSD0.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VadgPOEj.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+2Mx6CNa.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIsU3WPu.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eD8KvJQ3.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g+MJNN4k.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ith6wL5e.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xZTvHMo7.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BvfzaxMj.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ve2DCp+Y.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KQ+CIlck.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ZqnBCdvU.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TAoxl7R3.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VAFs0L7p.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\P+OcG5X0.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u2NKCkEW.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\moXpYGUT.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2dQHx8B+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\k6c5l4Zs.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BJ8SPSAw.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1EpVnd1F.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WSd8vvJ+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M6vSMB4.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TXBZ5Zv2.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GF4ojFS8.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\j4MZS3uC.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xKS2CAdA.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OTY+vEhj.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M7Mk+br.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pFQ6kByw.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YjoXTRDF.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f+LGd4Hi.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CXfYACeM.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1lJIHL1p.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Auic7m2e.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AX8lKh7j.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\snRMAVo0.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FrC55Mh+.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rUmG1DOI.gz
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\blazor.boot.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.build.GraphSample.props
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.GraphSample.props
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.GraphSample.props
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.pack.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.build.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.development.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\Overview.razor.rz.scp.css
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\SummarizeFiles.razor.rz.scp.css
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\bundle\GraphSample.styles.css
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\projectbundle\GraphSample.bundle.scp.css
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\jsmodules\jsmodules.build.manifest.json
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CopyComplete
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\refint\GraphSample.dll
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.pdb
+C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\ref\GraphSample.dll
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.dll
new file mode 100644
index 000000000..4087361e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.pdb
new file mode 100644
index 000000000..758251dcf
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.pdb differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/blazor.boot.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/blazor.boot.json
new file mode 100644
index 000000000..6d4766b49
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/blazor.boot.json
@@ -0,0 +1,288 @@
+{
+ "cacheBootResources": true,
+ "config": [
+ "appsettings.json"
+ ],
+ "debugBuild": true,
+ "entryAssembly": "GraphSample",
+ "icuDataMode": 0,
+ "linkerEnabled": false,
+ "resources": {
+ "assembly": {
+ "AWSSDK.Core.dll": "sha256-+UpImU00F39wFSt+inE9WLBTUExntLG77AT9xvHPZXI=",
+ "AWSSDK.SecurityToken.dll": "sha256-P3TkEvrhuiq4K1HnQHdk6MNzra8x4cvSdJ1hHfOwlbw=",
+ "Azure.AI.OpenAI.dll": "sha256-T8n0WcKn3Ui\/r0U1+lkkDb7nNxhJe+TkZicE47fwkqg=",
+ "Azure.AI.TextAnalytics.dll": "sha256-zDB4xGMyIDmS4b7XvzWKlrSIk9+PjaKdkUbarRWQlbE=",
+ "Azure.Core.dll": "sha256-fYiFbau5RKj6IKlS+3Et3wUL+65zMsMwJA7d2o32LyI=",
+ "AzureOpenAIClient.Http.dll": "sha256-xEltVWIXqXiSXiC1+yabJK95YziEUJyVrpEx6Vsi6ag=",
+ "Blazored.Modal.dll": "sha256-Sr30UiM7JErBe8hojY6HAgaOOgfQE5zHijI0uVypmkM=",
+ "BlazorInputFile.dll": "sha256-C0KrMmLQQE68cd1+FNwIOW89nNGbOH48hRxQAoSBaaA=",
+ "ChartJSCore.dll": "sha256-gwwJ+\/kjTpw9Y\/nyF36HlnAZNnnaIkf6EcJEKPPdBPI=",
+ "DnsClient.dll": "sha256-pqqUK\/nxzj7PtSwp8HNcVX1ULYXRKP+ym0hhLNYpjsk=",
+ "GrapeCity.Documents.Imaging.dll": "sha256-80s7r7qVGZMWIYX7j1qcPcBV8+4kSrBBd9wY+6W1vUk=",
+ "GrapeCity.Documents.Pdf.dll": "sha256-+wBSnAizmMIfETLKWirKUjdBTc9AoLuV7Bqz3pbbroQ=",
+ "Microsoft.AspNetCore.Authorization.dll": "sha256-\/EkWRHMHBhfvvlx5hLVtXGPm8+Gyp4WkPiKKiiJIrqQ=",
+ "Microsoft.AspNetCore.Components.dll": "sha256-SvjxqyTqc68zPsYivPRkvjKRhUg5zYufzqwGNS83bwg=",
+ "Microsoft.AspNetCore.Components.Authorization.dll": "sha256-41dLN3Fx\/ysI0SP+sKtAMWTZamweRiufJ7JPqZlnXrA=",
+ "Microsoft.AspNetCore.Components.Forms.dll": "sha256-eoQ2CgfBGkvbK4QUMBgFDPIBqJem+g8247Fb3ZmnmCI=",
+ "Microsoft.AspNetCore.Components.Web.dll": "sha256-p3BQFPwUbOgu5j9V+1HlUGwDcVzB7iYNO4dIsDCOAgA=",
+ "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-55+LOYcA1yHHPQEjl6eI0UGgteq41y+8js6DQ5PhXDk=",
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": "sha256-LL+Ypy6kUg17vXDvFlVs7uG4+Ip+QdaY8llF\/DVC0\/c=",
+ "Microsoft.AspNetCore.Metadata.dll": "sha256-eIu14RWCV9bKCAARda4hnWGsOKJfmnGfQpkmeRnSibQ=",
+ "Microsoft.AspNetCore.WebUtilities.dll": "sha256-D5akJeBd7NNITuzAXxlX7zl2jfsc4uTKyeEKwwNhqoo=",
+ "Microsoft.Authentication.WebAssembly.Msal.dll": "sha256-M6I8rpdSyz29AfvhQusE2M7HxP83C6UjlCbXXNBs8m8=",
+ "Microsoft.Bcl.AsyncInterfaces.dll": "sha256-EcDo\/GQZkQrOT1Xd0jMPE3NwT5lsMq5DNsPxHVidLDQ=",
+ "Microsoft.Extensions.Configuration.dll": "sha256-PqQvp77oZ4+uuy2ElXk8AU9I6RfZSf18UGTrd4rulOo=",
+ "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-CnS3b9EMFQmETBUVEgtcron4DBsfFdcVt3zfCP6Uflg=",
+ "Microsoft.Extensions.Configuration.Binder.dll": "sha256-7GY9+7Cm0Z8DJ+JCFwgCx9OfFtUvXlFHaaLlBYmXfIE=",
+ "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-S86mGNxJnkVJ\/qolp6cBN7xwXQ\/YVtHy7QTaPO93AIA=",
+ "Microsoft.Extensions.Configuration.Json.dll": "sha256-k525Vc8hbMpPjxYUYZNPuzJIuy+E1Is2XRTMFbUm1pE=",
+ "Microsoft.Extensions.DependencyInjection.dll": "sha256-\/+vk9BsQP4bCVt1Y6aXakSztSMAli200ER6untxHLBg=",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-jrAm+30mcWoI54hsUTOr+RMOzHIq+zO8ZuRBVrBvCoo=",
+ "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-Zt6OY6gg\/1Tzt9oFOQBkezPvUVkFK4dyM6Pfk+MTUvg=",
+ "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-9xkIbIienaRj9Td2MyWYzL9JmVx6CKbGCPrvJ1Pxfn8=",
+ "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-Gm0yiS5fySh2nZXdCRKZIbASK8sSukwjogLc+a9EBZY=",
+ "Microsoft.Extensions.Hosting.Abstractions.dll": "sha256-2qH9T9HZYBAigHr8n86fpvuaZsvJxdPdCMu5tec6Yjk=",
+ "Microsoft.Extensions.Http.dll": "sha256-QqjUvBFxKOeh8XX3IrmuIesFycYZMmwrhsRakmXvrXE=",
+ "Microsoft.Extensions.Logging.dll": "sha256-WMsuY8rhtg+vvssGFSR7ZLKhqYPAzOi538IXMoiJ6bI=",
+ "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-7zoKnNaWqWOrjF2eX3dFetJL+I03xqvCzORtFB4Ws08=",
+ "Microsoft.Extensions.Options.dll": "sha256-gcHJrSv1wTqvF9SyWTEKcbiShn4mkgfnm9+tRQr4OqY=",
+ "Microsoft.Extensions.Primitives.dll": "sha256-q4ruoDSCjV\/QJY9ZkzV6uxvEvZUVrDbyUjU3SSh5SlE=",
+ "Microsoft.Fast.Components.FluentUI.dll": "sha256-AM1swc0MWdQ008cWgP+\/qCGig6NCRCrj1UXWjhagH9k=",
+ "Microsoft.Graph.dll": "sha256-wHZisTU+lZHXIer25uRzCZzi1hBfV+H+31hgufwDzjg=",
+ "Microsoft.Graph.Beta.dll": "sha256-+22Gw67R9cVPo+yuDFgQ\/qvZP78moYdwW8th\/jg7Fww=",
+ "Microsoft.Graph.Core.dll": "sha256-ZgEqSt26LKpR2dQvVePfrvl\/upLdZBbiwmyI7TXFG\/Y=",
+ "Microsoft.IdentityModel.Abstractions.dll": "sha256-t7s0MJysE09CjR6Ug7LeooxWh6qQMvyP0BaK6owTg0A=",
+ "Microsoft.IdentityModel.JsonWebTokens.dll": "sha256-iOQnepr\/E4XN7m3ZPaRCHm1AkIN0fbzv9kaqAPxC0NY=",
+ "Microsoft.IdentityModel.Logging.dll": "sha256-R8PwspOBOtylLlhwJijr6JDM83WXCNuxcSLNOYkugEM=",
+ "Microsoft.IdentityModel.Protocols.dll": "sha256-Chqk48UY0+W2WrYmkz0CXA+b1jKiosBuYOrMCsPiOtQ=",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": "sha256-WbnzvZq\/XQo1B5Z+1oKyjUxQ2aqNqeDyISq0xBaHxPc=",
+ "Microsoft.IdentityModel.Tokens.dll": "sha256-Wiph8o+JeePw4GkloTJqWzogne17szvkhrjInJkpAdQ=",
+ "Microsoft.JSInterop.dll": "sha256-OBt2YgODs1L5bJWrDjUFgcgGMUjDfmFTHCt9t69RxgU=",
+ "Microsoft.JSInterop.WebAssembly.dll": "sha256-GH0zLXwtZcak53A9656ZndP15W57wd1W0kLvKDIV+VE=",
+ "Microsoft.Kiota.Abstractions.dll": "sha256-XGyjS3FRRc3OQqr3wtmkCnagPvoljDLNV0Z4WxcpbkM=",
+ "Microsoft.Kiota.Authentication.Azure.dll": "sha256-jU5eYEFKzWgF7OWOYsJM5bEb5t8WrkBM8p7VuBv00wQ=",
+ "Microsoft.Kiota.Http.HttpClientLibrary.dll": "sha256-WKXOvKFrqRLnVjp\/gA0oc9l0OB8U+iN+mXdj2LeUFvM=",
+ "Microsoft.Kiota.Serialization.Form.dll": "sha256-6\/jk5AJnQJGNuouF52mvjJP6n6s+1opHZ0uBKONN5m8=",
+ "Microsoft.Kiota.Serialization.Json.dll": "sha256-CcAEXSbIJlpoe\/hF0X8VOuZSMLtEhdLf30ok3hWwBrQ=",
+ "Microsoft.Kiota.Serialization.Text.dll": "sha256-U9o18GdkXSXvCj1ptHww8sQL4nH8ED8iZIfX4C5iKpw=",
+ "Microsoft.Net.Http.Headers.dll": "sha256-P66ftDrXwc6ayND8uYzIk0CPQy1GjNZAPHx9RMhi3V4=",
+ "MongoDB.Bson.dll": "sha256-d3ZsdGnCH++KHoY26Z19JA1IxR9hFKWE59VDS0pGDmc=",
+ "MongoDB.Driver.dll": "sha256-XZXhge+o5qeM5xgV6lhHanVvNQKpth\/b0zhHSHVR\/kE=",
+ "MongoDB.Driver.Core.dll": "sha256-qqEfR0SnPkzUV0zmanIDmi2anLp1SyKhDFevWf2ambM=",
+ "MongoDB.Libmongocrypt.dll": "sha256-0IcHuoTqrHG0vWBoQq6+HxI2BSDMkAGnVwN64V5vGS8=",
+ "Newtonsoft.Json.dll": "sha256-IsZJ91\/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
+ "DocumentFormat.OpenXml.dll": "sha256-BDrsmnS\/9JzpRWDRRNJPdsQHMhnkIlMfqffKn0I9T4c=",
+ "BouncyCastle.Crypto.dll": "sha256-n7KC+76rIikEfNEJ10mSwNXh+MMbda\/f4FD9fZ8WIw4=",
+ "SharpCompress.dll": "sha256-g6OkB2E3tHVhjYz074TwY\/qKeHk14HgEWYjivSizy68=",
+ "Snappier.dll": "sha256-7+iUMbT8Ae8amaAJEgiQ8U\/p6OQqf5zp4oy2zEDxxis=",
+ "System.IdentityModel.Tokens.Jwt.dll": "sha256-mMRs4CYO0tK9iswmp2AS47Dfo8riHqMoxPkTdczonTw=",
+ "System.IO.Packaging.dll": "sha256-1NYPxd\/Znog+W3dejVSmi57hLM8eGX\/c6SIZBh\/dDRM=",
+ "System.IO.Pipelines.dll": "sha256-P\/MqD0fCBd5bgTM16JC1QC\/Zz7s+CwViyzmDFkBG4\/c=",
+ "System.Memory.Data.dll": "sha256-KTyl2GNY+yzgDaAsY+78s0Ron8DGNrYcl8PxsVqAqlE=",
+ "Tavis.UriTemplates.dll": "sha256-esSAQepI47ZEvrdjJKDUIkP\/+Zp\/gW65TN\/HizEItqs=",
+ "TimeZoneConverter.dll": "sha256-+\/jS+apdJFwJrSAk5mtpMJCNbqpKHyYTarXy\/5sfylU=",
+ "ZstdSharp.dll": "sha256-VKZX+de4WCoEsOirOWgSviiKvr0Z3Ujd2\/PpLOUPOaE=",
+ "Microsoft.CSharp.dll": "sha256-6Y1rN8knL1K5x5lsZ2tEVDND2h4LtDSuVgCg1N8ghkA=",
+ "Microsoft.VisualBasic.Core.dll": "sha256-LRJ4hN7opopr3bsogxcz7uyVjh4bNZOdMbVbIIQ9z+8=",
+ "Microsoft.VisualBasic.dll": "sha256-xkUVMleH\/xQU+9disGUzBr7fT6ckmem5\/CMscxtghD8=",
+ "Microsoft.Win32.Primitives.dll": "sha256-lucJz4+wGO1ZdiEthwNGGIOUtcRUsVVabMVW1gtQIMQ=",
+ "Microsoft.Win32.Registry.dll": "sha256-WGxv3PzEfgVp3usrYhy+MBHjJfAjodWNBQU6wbPwnis=",
+ "System.AppContext.dll": "sha256-7TWcUhjRPqzWr21Y2gCSBaAFyJxlc7z4owojtSWcSVI=",
+ "System.Buffers.dll": "sha256-D+pqpCCHBkmhRKEaV+INC98dHtA1JDcg9mWqL9Ond0Q=",
+ "System.Collections.Concurrent.dll": "sha256-2K\/WsDXzSv\/zr47al4KrDWT2OBs9l06gKahr5K9mwss=",
+ "System.Collections.Immutable.dll": "sha256-0brR0tAZlQr4KM97EMlVlNiHVDhE0EWIrE2q\/utNnY0=",
+ "System.Collections.NonGeneric.dll": "sha256-1PceS1QJJyR9TkHlfvUQEKGhsJ4xj5nKczaq5JM+kfs=",
+ "System.Collections.Specialized.dll": "sha256-fQn5UDuKsKLJLFM5oP7tV6c\/nsg4sCmcCQGD2cdOjD0=",
+ "System.Collections.dll": "sha256-vwimVkB+WktlZk8jST2HzG11jBQBcYI4g1uOR32VhRA=",
+ "System.ComponentModel.Annotations.dll": "sha256-NUD59NxxFo6ElXR4KdKYGRMeUflEmDlgpU0mZmr0JRA=",
+ "System.ComponentModel.DataAnnotations.dll": "sha256-LxLw+D49jEOMTd2EIBY2ah\/K9LEDEqJapMrBWvzrSWs=",
+ "System.ComponentModel.EventBasedAsync.dll": "sha256-2ba\/XMMymeP8SwHaOiMtpLLNw45+nA8iisGDHtzuW2s=",
+ "System.ComponentModel.Primitives.dll": "sha256-ra+S6YBscBNuGQRHqRBsFXMnn5Hf2LIrbJs7frsvXHA=",
+ "System.ComponentModel.TypeConverter.dll": "sha256-86xoWr1\/foKgp89NdwW\/sIJMnh8X6GQeQtGi2td+4OY=",
+ "System.ComponentModel.dll": "sha256-2u5p0jWnx5eMfQRr3n+YLoFjDFRwJf3KxghICbBP83Y=",
+ "System.Configuration.dll": "sha256-DxBo7aXEaQN\/RMTeWVrXeltU+jlTxKIE0MSxtgriBRY=",
+ "System.Console.dll": "sha256-x2R8PrlSUDcIcYa3wiFOYDo3WBJ6frGB5YdVeOu\/mh4=",
+ "System.Core.dll": "sha256-QU6Zi\/m0odpCw\/jmhvgflrMcgvcMjz0Qek35MPVcNCw=",
+ "System.Data.Common.dll": "sha256-qjkLUwub36Jnil+Mkt\/3NAy7MBFeI2YH8SLtZWKvGo0=",
+ "System.Data.DataSetExtensions.dll": "sha256-p+kFZC3MLQ8R42IjhsUwJakKUqkKM+a6uClvAsxwwOc=",
+ "System.Data.dll": "sha256-m+19eTWjPykLqlDe\/yQstXNXfewpumOqK0vaHZ0WRag=",
+ "System.Diagnostics.Contracts.dll": "sha256-dqfKcpJQauvOtAVBZlH9vZFg7TnQ7un3FGTjcG9hesM=",
+ "System.Diagnostics.Debug.dll": "sha256-1yhwgAHYEOsTk1ZE25o\/b8xrtdKZtuJnMBbHeebkfpA=",
+ "System.Diagnostics.DiagnosticSource.dll": "sha256-YP8hvCIj64eqULMIDKyhebV2s0TSA0lLKMmjXeJTb1I=",
+ "System.Diagnostics.FileVersionInfo.dll": "sha256-xLvNpGzQci45dyRBJq+FKc8WzHHrmf6VJ9kl5mvK4HI=",
+ "System.Diagnostics.Process.dll": "sha256-6MAKEKQinIE70XtsueWEgJ7oWQY4KKqWFsgs7DUsz5c=",
+ "System.Diagnostics.StackTrace.dll": "sha256-N1kt4OLEBIEt+JSmX5xQ25kxPJCsVbxvHK3xGIpzI2w=",
+ "System.Diagnostics.TextWriterTraceListener.dll": "sha256-hiTBz1YtFh+hXOMCVkXK1WgRZgUXbi1pesRRJ8l0A4A=",
+ "System.Diagnostics.Tools.dll": "sha256-Oc430NOwzVts7ZlS9ZOkLOgb5JdaXL\/qYoC3BVkrMFA=",
+ "System.Diagnostics.TraceSource.dll": "sha256-XA6qOo442+eAO6UnYehnVhpbs5DIrpUDeW1HlFPpXPE=",
+ "System.Diagnostics.Tracing.dll": "sha256-vWC30ViFKVvfA6lr4WpENnHARX4j2ur\/mHthwaKoATs=",
+ "System.Drawing.Primitives.dll": "sha256-BJy91Y2qFeK2inFNUFA\/5mJSMwdbm\/grKthhaO35NAI=",
+ "System.Drawing.dll": "sha256-Dt6ZUiquxwt73K0SwRxN9inXL9\/iBxGUSAssD2ZTsUg=",
+ "System.Dynamic.Runtime.dll": "sha256-A\/UdQgEr6UkQp0Zvy0ySsIVJvHuuCreyMGJi8e9NaMQ=",
+ "System.Formats.Asn1.dll": "sha256-P2vkee5dVn7oBeVQcsQwIXxYCQtVC5bnF3WIEh4Ex1w=",
+ "System.Formats.Tar.dll": "sha256-BghbZNz2l8GKkA8sbyBrvgZ\/1B0nJnS9jw1+9E5o4O8=",
+ "System.Globalization.Calendars.dll": "sha256-pALRgo1jB\/83My1cUtomrU4xdi34uIYdgWmJgSCR6po=",
+ "System.Globalization.Extensions.dll": "sha256-RffLgs1y7ZU19dsAW2hE0jwWT05QOSG4t+vwJxPOc1s=",
+ "System.Globalization.dll": "sha256-afrKKJTWfb1nxIBkRZi1Z560z7EHloRwO+KVyUVDzm4=",
+ "System.IO.Compression.Brotli.dll": "sha256-3jJVep1ZzHjUQPl6FMbiTvY4REKUCRclCCz1B3EB8Eg=",
+ "System.IO.Compression.FileSystem.dll": "sha256-VHqyfA\/xMKfCo714OvSrHJFJhOCTqkC3ERXm9W\/tQ7g=",
+ "System.IO.Compression.ZipFile.dll": "sha256-EaLFLzEig0YZOMmzwRhqdrmRsPjnura5sP+kIxrqpWc=",
+ "System.IO.Compression.dll": "sha256-eaSXrmsjLkjjY4kbxJWbwUloAU5j8g6PJyivblsNfww=",
+ "System.IO.FileSystem.AccessControl.dll": "sha256-a4HeIPUfXQvmb\/FlJsuBADEVP2ho6KQP76yENfuwxgc=",
+ "System.IO.FileSystem.DriveInfo.dll": "sha256-28iVzkA1XXuMlAF+voPShSwc7Dfb6RWat8w7UQrONIk=",
+ "System.IO.FileSystem.Primitives.dll": "sha256-+V\/Ar9S1GDkRmIEMFbydoyaonEcNtnjbcDCJk75zq8k=",
+ "System.IO.FileSystem.Watcher.dll": "sha256-s59BnWfcVMtsSayxP+JOhtd\/3yPT1SdkgNS8+y6htNo=",
+ "System.IO.FileSystem.dll": "sha256-gTTqQtC8gN0WRvXc1d2w13eDZTrbzIka0PQi3rPTTtE=",
+ "System.IO.IsolatedStorage.dll": "sha256-kE9wiBqkMoKnSNzZNmMkxGJrilJanBc9KfElZ1XwI3w=",
+ "System.IO.MemoryMappedFiles.dll": "sha256-HdDDMErSSsu+1IGXGrlpoAnVLwkRuWQQSmZPHbQKddI=",
+ "System.IO.Pipes.AccessControl.dll": "sha256-4uOuCBbwKHU0KekAiOQL1vlXj0LuORa+YNFf2DUKRpY=",
+ "System.IO.Pipes.dll": "sha256-k6JSQ9EoXOG\/Xt0ER9E4PwRa7IR\/AmJOoDcmHDQVf0g=",
+ "System.IO.UnmanagedMemoryStream.dll": "sha256-\/r0qrwbyFVcp09GZFLCBdnNBqGaNsg9dMqSpa52M7hE=",
+ "System.IO.dll": "sha256-vo7HL66JDROb6LCcXiLOInexsARgGyz701SOeGaocRc=",
+ "System.Linq.Expressions.dll": "sha256-AL\/cPJ36gyGw550gx1XbozxiGoAazGT2AoHXh7lxInM=",
+ "System.Linq.Parallel.dll": "sha256-oUO3Yz2pz9q6qrloWbxlBfCGe1AIXe1bO+8stkCZLFk=",
+ "System.Linq.Queryable.dll": "sha256-uLVZt+s7IYTq\/bJE8yFSthB5IsYBlPTKDk6TD3gibRA=",
+ "System.Linq.dll": "sha256-EXO1Eh2R1Txuipg3tHui\/Pqdl8l2gP4ZUYG3HVz5sKw=",
+ "System.Memory.dll": "sha256-W\/fRA8tiM6Xfvcphi6d57EdsMCcXbjTT4+UipHxZFq0=",
+ "System.Net.Http.Json.dll": "sha256-uPFK0nYPyNcalouETAhKv\/8l5cpJoKewEkH3SfCWjdc=",
+ "System.Net.Http.dll": "sha256-7pFAvBOTQxmKE\/Hx4y9CSTkXCj1NUkgaELyLPCpIw7M=",
+ "System.Net.HttpListener.dll": "sha256-1yh5nM+KHYQfjBIRnjw\/zm11xGCMDkW5X6xPbM4OK0M=",
+ "System.Net.Mail.dll": "sha256-Ees0GKEtYLtvcFaF4Mg7SrGmE6ntuARPJ3ctH7tnGyM=",
+ "System.Net.NameResolution.dll": "sha256-qNFVdZU8IlnT\/7Kydk2f5EeLEK43LPd5b\/3Tp8zTNjc=",
+ "System.Net.NetworkInformation.dll": "sha256-fnOoKrwcDOfqeRz4iups+eBqX\/CcgzYP8wSH3fs9cAw=",
+ "System.Net.Ping.dll": "sha256-rdnWnaqbwdek9cziz3YqU1I2HGbLitw3Yje5EnOfFZ0=",
+ "System.Net.Primitives.dll": "sha256-EZKPs84TovM60o7haxAMRR4PpXvQ586AoFeTUyb+e+Y=",
+ "System.Net.Quic.dll": "sha256-x3Fcp0ZpTn3s3A6RnexallUHcdT\/QyJRr0rwWNsB6s0=",
+ "System.Net.Requests.dll": "sha256-6lhVGYKf14zgrvx9spx9F65qFC7\/4dh23BHlRXWYAUM=",
+ "System.Net.Security.dll": "sha256-KahC\/cXzZqMT0F8cSEhY8lAoQjx218DicZ6fqjX5MyM=",
+ "System.Net.ServicePoint.dll": "sha256-yQi5HnnAAW3RYMxj4i0imy9EgP0ymv387JN\/i0tI98I=",
+ "System.Net.Sockets.dll": "sha256-8tCW4TMl1DDY1+sE99pGR0V7XOulRRd7AyhHLtT9e68=",
+ "System.Net.WebClient.dll": "sha256-6eW0V\/divz3WqpuQ38ivS\/EmJhjS9C9AeiM61oG+g1s=",
+ "System.Net.WebHeaderCollection.dll": "sha256-LAjBAyQsRUceRBXEmSd+VHWSWMhErrnMHwki\/x\/oUIQ=",
+ "System.Net.WebProxy.dll": "sha256-75hxZ+dw4YSJ6Odi+xmOUOK2v4KrWhTAakLdPUF4Jvg=",
+ "System.Net.WebSockets.Client.dll": "sha256-4A4eNfhKtqO22nPCE9gcCXBm+I16t5HodflV6JaqKfk=",
+ "System.Net.WebSockets.dll": "sha256-TMqLCEDpgG8LQvp6czXjbPCAHZ\/zSnxS7dmg0+Kpk4A=",
+ "System.Net.dll": "sha256-UmS\/aFJ1ge+t8hjDME17LrMrYKWlxzhyMXP8Do1rv9Y=",
+ "System.Numerics.Vectors.dll": "sha256-sfckNKDNCQrtLJC6UeN6k\/0jIM2T9BPzmmkC6xATRH8=",
+ "System.Numerics.dll": "sha256-+LmwPV2ZHT4i9u4WiO4BxSIec1FtrSIfxII7CVFizoA=",
+ "System.ObjectModel.dll": "sha256-x3o9lRJAWfBFD1WaseStgK30v3wVgiXgYR4DbL+H6s0=",
+ "System.Private.DataContractSerialization.dll": "sha256-QDskUjBYm03oolPQOQBFKFX4VCEbS0Bkd2DGO1bA0QU=",
+ "System.Private.Uri.dll": "sha256-lmmUVB4nvy09yB6IS\/A7ZdZ2C\/RyBnXf89xw2oWnDEM=",
+ "System.Private.Xml.Linq.dll": "sha256-Y7iQofVvArZGVmxpi2\/3D12FFW7dKxvftELb+OfMgI0=",
+ "System.Private.Xml.dll": "sha256-77UDSVB0hR8MCc9zzl3UJ7wxLh4kJoW2NuLrl2UhFTc=",
+ "System.Reflection.DispatchProxy.dll": "sha256-o54HxPqaDaOCrPXoWr3erljuUSZfS8OuRL+rsjx9PhI=",
+ "System.Reflection.Emit.ILGeneration.dll": "sha256-+8QK1ENgwjIIwXPFNXphrJKgGEEDhQK3WKVR3TYgS4Y=",
+ "System.Reflection.Emit.Lightweight.dll": "sha256-joIP68O8gIgVdQm7Fc7oWHhzXQk3t5cLgiiqop4YnNE=",
+ "System.Reflection.Emit.dll": "sha256-bf6mi\/QcTQVXipMxeU4z7e0dhmnzYnvp373Gac0S4xQ=",
+ "System.Reflection.Extensions.dll": "sha256-kJQJn9zh\/R8ad1HKxsnBf5TvyAcmDMNqCW2RqrSGhKI=",
+ "System.Reflection.Metadata.dll": "sha256-VmrPNFdw1UT+8IpCC7Whm\/jO8Ys75dpNHmYDwcd4tbc=",
+ "System.Reflection.Primitives.dll": "sha256-PUj2dTxker7Y0IrwEWRPzBVHBFfDQqP75lZ\/QcZ6XTo=",
+ "System.Reflection.TypeExtensions.dll": "sha256-OzuXdBaFnwmLsmtdXI\/drJv\/IIB7eABZAxDRitqqdhI=",
+ "System.Reflection.dll": "sha256-pljq5DnINJtH9bxdRXiDTyEBpJfwM1kj7yyEXjDQAqI=",
+ "System.Resources.Reader.dll": "sha256-\/pIxvJS4987MdCAuDU73oFCYj5zf4hJF90O8YBTNfHs=",
+ "System.Resources.ResourceManager.dll": "sha256-6yWD01YDvrUD1u47NYFvtdgKzRTQaGe37HQr8yQuuWU=",
+ "System.Resources.Writer.dll": "sha256-a37W4sVXcaG2gp\/GH3\/y9bbsjE4t3a\/rzemAfw09x4c=",
+ "System.Runtime.CompilerServices.Unsafe.dll": "sha256-Jer49wJrlVXBDylDpm4PJd3hABEhgUbjOJOUPPSFuds=",
+ "System.Runtime.CompilerServices.VisualC.dll": "sha256-S1ocTp356bytLRBiSYfUaP0\/rLFgL6zYoUlx42Ni+Ng=",
+ "System.Runtime.Extensions.dll": "sha256-cwPH9ZR05wn4zQSOpAzU6e0MRWUqlluljO\/\/KdUxFaQ=",
+ "System.Runtime.Handles.dll": "sha256-9gWv0Ah4Mhfc3p1OO7s1LyvkTCft+XUqkeZbGSsGP+E=",
+ "System.Runtime.InteropServices.JavaScript.dll": "sha256-Ika9jD1bp92C5JyRGWWAq8I30pX3+zHKfZH\/cGp0Wsk=",
+ "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-a56lo8SHC7lLQOyqmwdTIAxqcilLbdbxyLzygm+HS9o=",
+ "System.Runtime.InteropServices.dll": "sha256-I8JRWjqH9yGKfQ\/u8fGTBGL5R+p4t\/BTwCPtaVP5NNA=",
+ "System.Runtime.Intrinsics.dll": "sha256-s7ED6CqU5sqiriNPCBRyGad4J3mmP5cSLNBrPkf5YLU=",
+ "System.Runtime.Loader.dll": "sha256-7\/VXqrJyz6w7P0XjMWQQc644qmeGLJBJ8rOtPmenAg8=",
+ "System.Runtime.Numerics.dll": "sha256-CIuKFDtuWc\/+pxGCKWM2iT6vBSko4Xee+fcS5lPLkxM=",
+ "System.Runtime.Serialization.Formatters.dll": "sha256-bOjX9cfmsSsWnVBCpfu40b9+5H1PeQookq9J4dZ1tho=",
+ "System.Runtime.Serialization.Json.dll": "sha256-W1LFtjaMFDPf412OPRn7FqrtKP\/ZtR6zTwxLq8BnFg4=",
+ "System.Runtime.Serialization.Primitives.dll": "sha256-EVnHo6YYTpM1jEhqrKouL92pk98n7aOc6TJ+zUgGoAQ=",
+ "System.Runtime.Serialization.Xml.dll": "sha256-Aw6KX9j+5mx6HUHtImtB7LFROCxHSpbowylTBSCO8UA=",
+ "System.Runtime.Serialization.dll": "sha256-ieCoS99bFo3vtWCdlz80SbUJcApHTVmuZEGdAWGrrh8=",
+ "System.Runtime.dll": "sha256-HAhQeNzYHs9HyyBhTO\/EX1iU7YEKwoEnGx9X2LW4Vys=",
+ "System.Security.AccessControl.dll": "sha256-wOcRpFZ1XG5Yu+jPfiIX+RuWbM45zPT4jdMvA0jKtS8=",
+ "System.Security.Claims.dll": "sha256-obeNM8MiV3pV+71JCjOfWdKz7KvqDHVwYdxsbkL4QtU=",
+ "System.Security.Cryptography.Algorithms.dll": "sha256-KOR32YaPNGRa1Mx5GUAJocI4d7ILc0hNsR85s\/qHnz4=",
+ "System.Security.Cryptography.Cng.dll": "sha256-6GIzL6b8w8nBC\/0HGW67+ZdLl14KIzyJ3xnobSRCNtA=",
+ "System.Security.Cryptography.Csp.dll": "sha256-I6UTSqzotpguxLa6Mky\/CVlRoXaWA\/VGUnSa+fWfooE=",
+ "System.Security.Cryptography.Encoding.dll": "sha256-LFkdeimY8XYu5oM8lPftNn0EXjp77SYb0P9zAZ8i7JA=",
+ "System.Security.Cryptography.OpenSsl.dll": "sha256-pWMejSIyXuj6utObjjdaQYXHIJjkRyGhLs6ATNHzcCo=",
+ "System.Security.Cryptography.Primitives.dll": "sha256-6U9tVMS2AcRCVL7OsIB\/vClW5whwaSdwEkh3fMDN3fs=",
+ "System.Security.Cryptography.X509Certificates.dll": "sha256-GDvp0VwTbHYenh\/m7rQPMrh9R+w8\/ErOGci9kB9eDT4=",
+ "System.Security.Cryptography.dll": "sha256-dfovi0zCN3b5w3JBB6TP46bY1uC1oHy9B8wJxbYGAg4=",
+ "System.Security.Principal.Windows.dll": "sha256-d9f5+NQ4CskBA9qzwyV2GqSBslI7bRiXpGFSyPsEtVA=",
+ "System.Security.Principal.dll": "sha256-tVd55g5lNCTyam9JPEK13OlS2yCEG3+T68EERM3kqdg=",
+ "System.Security.SecureString.dll": "sha256-FAMqTDxIU0C3qGYFWBt6ZWujHGbpxzlYyGYeTfEZV7Q=",
+ "System.Security.dll": "sha256-9A1V+ITVbr0NJRyCxe+LzMHMnEUIiXRvS\/xXOSTKGDk=",
+ "System.ServiceModel.Web.dll": "sha256-7Hga+jap642rxVSYqG0\/GkTEmThGIlCzjjOvnkmnYRk=",
+ "System.ServiceProcess.dll": "sha256-nkLSRcQnaVp6gmYJxHwIfE+XjP2xOtanHFtYrj\/dIKo=",
+ "System.Text.Encoding.CodePages.dll": "sha256-7nAeOeAzxcaxc1CV7GLjLnlx6h0UyDe20lqOzmDgxFc=",
+ "System.Text.Encoding.Extensions.dll": "sha256-YPIlEpZ\/zKt3dzziZZKMLJLsECFJk0t9IHTOeJ1FNOo=",
+ "System.Text.Encoding.dll": "sha256-owgV8aZQzl0xLGBKto5qKnkQ+Jj3F97\/ewkxwoLhMVQ=",
+ "System.Text.Encodings.Web.dll": "sha256-WSjAnnOLfsXb33Twp35Ctsue8egrDWoLlNbMksiD4TI=",
+ "System.Text.Json.dll": "sha256-TnU5Ig0\/qKHRvdSNay7ugpKPaL3ahpQIyi37OSjlicM=",
+ "System.Text.RegularExpressions.dll": "sha256-N18f3LMYVaBB24DGtoJ+rzMgpkgTa3QFTuaJoC8pdDY=",
+ "System.Threading.Channels.dll": "sha256-s9dNZ8+KoW57Lmi+fP8zWYJqeRutSSu6z+kYdDjAu\/8=",
+ "System.Threading.Overlapped.dll": "sha256-37EfT1YZLtLB+Ez1m3MFz3kc2Z0XjO1nORyda+XDG1Q=",
+ "System.Threading.Tasks.Dataflow.dll": "sha256-qAOwJdRifT1gadnHfuv\/jB1mr\/lP4JLFSmsiFovDOYA=",
+ "System.Threading.Tasks.Extensions.dll": "sha256-nxEfwHtQFKoMl8lp5ikMB4+lpJ8QiGBy9xzjgnsMkNQ=",
+ "System.Threading.Tasks.Parallel.dll": "sha256-nSJC8IgDpcjauatJbybVvkgF4sc3Syg1K5Zh4YSAVjQ=",
+ "System.Threading.Tasks.dll": "sha256-G1nQ5\/Red3cs0DirxW682VCJ\/a1grb37qm1BVmts\/Nw=",
+ "System.Threading.Thread.dll": "sha256-fpg4DXuKPwTsiP\/poP4vgWCNimPuPLklzUIj1ODu5nU=",
+ "System.Threading.ThreadPool.dll": "sha256-67ZcL3XG5iZ2czqpw401ix2vn\/2RJE1OPPqATV+S5ZI=",
+ "System.Threading.Timer.dll": "sha256-261A8pkSF3pvGIrn6H7m02T1\/JsuwBgTAu8zpvEErqc=",
+ "System.Threading.dll": "sha256-xjtYe\/42JgagDKF8Xv3EhJl40NTziwx\/VwPE9y4ELH0=",
+ "System.Transactions.Local.dll": "sha256-rU4mTr82aHMgYBL70OO6U0TcL810LJwRUHljdC\/KC5Q=",
+ "System.Transactions.dll": "sha256-Fl36SVhASzk\/VsI8X80DrpDdLiKprXmcNRZ9dqHXOjk=",
+ "System.ValueTuple.dll": "sha256-eI9Gd7DfoOKMKcUvrUyBOYX\/1X+qoGlfLWGyov7CEoE=",
+ "System.Web.HttpUtility.dll": "sha256-t8YxFRjw08+4q36f9nLIRFiiczlca2RkfmzGYmGLIKI=",
+ "System.Web.dll": "sha256-xtj5BTZeF8uInYXYVlyZoxCO+4T5WOGwk7w+e6DLbsY=",
+ "System.Windows.dll": "sha256-DNjkNCF7j27CNyxBcGIrMuwL0ydDOMeRtUX4CE0Xt5E=",
+ "System.Xml.Linq.dll": "sha256-NhHAGnAlayjfbMQPRrTCkjckaz\/69co8poQmnLYnKOA=",
+ "System.Xml.ReaderWriter.dll": "sha256-f6p5YWzc3e2Vg606gUu50uHyviOtOgq7PzobmDgl8Kc=",
+ "System.Xml.Serialization.dll": "sha256-3XE2YVQZgqUZ2eYnIoNnkMq5bGl2XlblQrpOJlxnT4w=",
+ "System.Xml.XDocument.dll": "sha256-NO\/P\/T+7TPRsmjK9JCul9xqWcK8Qvdaz52cnzmclBQE=",
+ "System.Xml.XPath.XDocument.dll": "sha256-G43aXAhY6bZCObx3e\/T4Wf\/OvC1yO14GIhbmpz38hn4=",
+ "System.Xml.XPath.dll": "sha256-76s7J3orfX5VlcarhdfOV\/05St84NlfvGDul\/SaHe7s=",
+ "System.Xml.XmlDocument.dll": "sha256-eAWu9IQu2iunp\/SsP+1Wu\/bigY2zxV9JcNtdJagthu8=",
+ "System.Xml.XmlSerializer.dll": "sha256-8qnJDsE4pVWkhcfAoPGMsrgty96NOfCOAs+4swI4LPY=",
+ "System.Xml.dll": "sha256-ZrdEXfsh4gCVWAiAq038hgrsqQibCYHMFIpRW90jTlo=",
+ "System.dll": "sha256-cbk1\/4P+UvDk13iCw85zs2\/lR1S+nDR3mY60kAr\/cds=",
+ "WindowsBase.dll": "sha256-SgDw2itoVCJKQ9AGrgAuRDPOFrMUYvGZeeDXCm6eC1M=",
+ "mscorlib.dll": "sha256-qqpKd+W+AFb6UxudEYEKzrz7ma81p5LrWUwPBVvHV4U=",
+ "netstandard.dll": "sha256-OYYuPT3JUknj4LdYIa58zF7kDB3tCnLzjCSuhEjtKXM=",
+ "System.Private.CoreLib.dll": "sha256-EVS7zPxPV\/41g2mzPwdXtwiigWxI\/SeAHme1IgyD6tc=",
+ "SharedModels.dll": "sha256-b7WnF9tfopuJPf40TdpJMnoJRH6lZznx6H3yxJ7HH2Y=",
+ "GraphSample.dll": "sha256-dx0LNynAwY0HDteN3GhmnbQmYBcF4HANyYX1aNlf73k="
+ },
+ "extensions": null,
+ "lazyAssembly": null,
+ "libraryInitializers": {
+ "_content\/Microsoft.Fast.Components.FluentUI\/Microsoft.Fast.Components.FluentUI.lib.module.js": "sha256-ND1vLicPyknaz63eR1\/+a5vJIKrL2EX3xYqzR4e0S70="
+ },
+ "pdb": {
+ "SharedModels.pdb": "sha256-OhgUc7L3fu2touKGcGpX\/t\/ASF0lyDUGt\/H8bpJpu1g=",
+ "GraphSample.pdb": "sha256-GuGgC3nqjDaa111cO1\/HaRve97yXLMSDyfsaL1PHnTg="
+ },
+ "runtime": {
+ "dotnet.7.0.5.9her4wdnhl.js": "sha256-codB25EodaFEP43MDCfMBuKXU4LqurUKnQrpoMIFnPs=",
+ "dotnet.timezones.blat": "sha256-rIVQOJ+gHn4DeRSq6Ac3CURS8YBJG3P4CtYPfIuZ\/kk=",
+ "dotnet.wasm": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o=",
+ "icudt.dat": "sha256-tO5O5YzMTVSaKBboxAqezOQL9ewmupzV2JrB5Rkc8a4=",
+ "icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
+ "icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
+ "icudt_no_CJK.dat": "sha256-L7sV7NEYP37\/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
+ },
+ "runtimeAssets": {
+ "dotnet.wasm": {
+ "behavior": "dotnetwasm",
+ "hash": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o="
+ }
+ },
+ "satelliteResources": {
+ "ja": {
+ "ja\/GrapeCity.Documents.Imaging.resources.dll": "sha256-KtoftVc29pGvHmYM82mOXOpk5+CBsiAvU6Rk8Yiu42c=",
+ "ja\/GrapeCity.Documents.Pdf.resources.dll": "sha256-6X2vLz48j72uR53HIHdDfjwonFxDkuuVjPm\/8+Xt1a8="
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+2Mx6CNa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+2Mx6CNa.gz
new file mode 100644
index 000000000..35c00acfa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+2Mx6CNa.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M6vSMB4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M6vSMB4.gz
new file mode 100644
index 000000000..d534c3db6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M6vSMB4.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M7Mk+br.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M7Mk+br.gz
new file mode 100644
index 000000000..0991f8159
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M7Mk+br.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+R2yTmhK.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+R2yTmhK.gz
new file mode 100644
index 000000000..2e8b77c82
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+R2yTmhK.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+X0clzuq.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+X0clzuq.gz
new file mode 100644
index 000000000..ae2301f9e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+X0clzuq.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iSgVwEB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iSgVwEB.gz
new file mode 100644
index 000000000..f735865bb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iSgVwEB.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iaqeheV.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iaqeheV.gz
new file mode 100644
index 000000000..a026cd934
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iaqeheV.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+rFJtA3r.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+rFJtA3r.gz
new file mode 100644
index 000000000..7f8b7d690
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+rFJtA3r.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/0F3THOoe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/0F3THOoe.gz
new file mode 100644
index 000000000..fb616327b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/0F3THOoe.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1EpVnd1F.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1EpVnd1F.gz
new file mode 100644
index 000000000..aab146f67
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1EpVnd1F.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1dQeDFxx.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1dQeDFxx.gz
new file mode 100644
index 000000000..bc919ac15
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1dQeDFxx.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1i1sXsPJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1i1sXsPJ.gz
new file mode 100644
index 000000000..a78162d1d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1i1sXsPJ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1kxNreRR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1kxNreRR.gz
new file mode 100644
index 000000000..b66c41225
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1kxNreRR.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1lJIHL1p.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1lJIHL1p.gz
new file mode 100644
index 000000000..4c6dd461f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1lJIHL1p.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/22VaScSs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/22VaScSs.gz
new file mode 100644
index 000000000..298a06413
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/22VaScSs.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/23ROlzFb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/23ROlzFb.gz
new file mode 100644
index 000000000..eab27ba9e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/23ROlzFb.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2cjWzD2X.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2cjWzD2X.gz
new file mode 100644
index 000000000..38baf3c4a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2cjWzD2X.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2dQHx8B+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2dQHx8B+.gz
new file mode 100644
index 000000000..2922cdd72
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2dQHx8B+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2gtVL9b2.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2gtVL9b2.gz
new file mode 100644
index 000000000..c1f8fc751
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2gtVL9b2.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2z3fA+Xs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2z3fA+Xs.gz
new file mode 100644
index 000000000..da85bfa1a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2z3fA+Xs.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3FX3z+Y3.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3FX3z+Y3.gz
new file mode 100644
index 000000000..280dfbeed
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3FX3z+Y3.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3GS0+Xc0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3GS0+Xc0.gz
new file mode 100644
index 000000000..b4de63f44
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3GS0+Xc0.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3O+cKOiM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3O+cKOiM.gz
new file mode 100644
index 000000000..4243b3dc9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3O+cKOiM.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3RGQuDHV.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3RGQuDHV.gz
new file mode 100644
index 000000000..bca5c6366
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3RGQuDHV.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nAdAk7p.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nAdAk7p.gz
new file mode 100644
index 000000000..8008eb57c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nAdAk7p.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nN9D7Td.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nN9D7Td.gz
new file mode 100644
index 000000000..e5bad8b3f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nN9D7Td.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3o4c9yGb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3o4c9yGb.gz
new file mode 100644
index 000000000..c599b6b7c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3o4c9yGb.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3r5GoTSy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3r5GoTSy.gz
new file mode 100644
index 000000000..b20dbe794
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3r5GoTSy.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/40KW1Jvc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/40KW1Jvc.gz
new file mode 100644
index 000000000..63bcbeb0c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/40KW1Jvc.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/42yeJ3X6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/42yeJ3X6.gz
new file mode 100644
index 000000000..cc66c1823
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/42yeJ3X6.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4IbJOvmG.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4IbJOvmG.gz
new file mode 100644
index 000000000..ede9a06bd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4IbJOvmG.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4XMlHwCM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4XMlHwCM.gz
new file mode 100644
index 000000000..def0edbdd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4XMlHwCM.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/56lJo9NZ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/56lJo9NZ.gz
new file mode 100644
index 000000000..fd765252d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/56lJo9NZ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5JBFDoaT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5JBFDoaT.gz
new file mode 100644
index 000000000..9fe38781a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5JBFDoaT.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5Wvbiv0t.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5Wvbiv0t.gz
new file mode 100644
index 000000000..fc1d5cfb6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5Wvbiv0t.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5aZHroMB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5aZHroMB.gz
new file mode 100644
index 000000000..543af01b9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5aZHroMB.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5xWImhhp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5xWImhhp.gz
new file mode 100644
index 000000000..c6fee6cc1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5xWImhhp.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/62L4R0lC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/62L4R0lC.gz
new file mode 100644
index 000000000..06d40ba66
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/62L4R0lC.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6SYFWDbs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6SYFWDbs.gz
new file mode 100644
index 000000000..0e31f24ec
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6SYFWDbs.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6bAS78QA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6bAS78QA.gz
new file mode 100644
index 000000000..0dda3925b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6bAS78QA.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6chkLOwn.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6chkLOwn.gz
new file mode 100644
index 000000000..382c220a0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6chkLOwn.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7+NmSqS6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7+NmSqS6.gz
new file mode 100644
index 000000000..a0c3c5a5a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7+NmSqS6.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/77KXf+G2.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/77KXf+G2.gz
new file mode 100644
index 000000000..98f5cb3db
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/77KXf+G2.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7EeleHRx.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7EeleHRx.gz
new file mode 100644
index 000000000..6140df868
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7EeleHRx.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8GFzTuVa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8GFzTuVa.gz
new file mode 100644
index 000000000..f35ffb4aa
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8GFzTuVa.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8I2FPv+4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8I2FPv+4.gz
new file mode 100644
index 000000000..ca9a4a2b1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8I2FPv+4.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8UzvLwf+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8UzvLwf+.gz
new file mode 100644
index 000000000..35d3488bd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8UzvLwf+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8m1yIPR7.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8m1yIPR7.gz
new file mode 100644
index 000000000..705305507
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8m1yIPR7.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8vyJHDuB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8vyJHDuB.gz
new file mode 100644
index 000000000..e5759ed4d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8vyJHDuB.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8xSaKK2f.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8xSaKK2f.gz
new file mode 100644
index 000000000..ae5a8441e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8xSaKK2f.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8zwHBSD0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8zwHBSD0.gz
new file mode 100644
index 000000000..81ebf17d2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8zwHBSD0.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9AzsP+D9.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9AzsP+D9.gz
new file mode 100644
index 000000000..5b53a2a53
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9AzsP+D9.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9OGW3CR+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9OGW3CR+.gz
new file mode 100644
index 000000000..cf6625325
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9OGW3CR+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9tAoG1Uq.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9tAoG1Uq.gz
new file mode 100644
index 000000000..8e2765edc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9tAoG1Uq.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9xCfsmCY.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9xCfsmCY.gz
new file mode 100644
index 000000000..67c60062e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9xCfsmCY.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AAJPMc+q.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AAJPMc+q.gz
new file mode 100644
index 000000000..5b526d4eb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AAJPMc+q.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AFZMHXnU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AFZMHXnU.gz
new file mode 100644
index 000000000..f217c5649
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AFZMHXnU.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AOvOJax+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AOvOJax+.gz
new file mode 100644
index 000000000..4c44d50e9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AOvOJax+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ASazdaOA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ASazdaOA.gz
new file mode 100644
index 000000000..30ed72cde
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ASazdaOA.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AWyDvF+9.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AWyDvF+9.gz
new file mode 100644
index 000000000..b0e3255ba
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AWyDvF+9.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AX8lKh7j.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AX8lKh7j.gz
new file mode 100644
index 000000000..14da34411
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AX8lKh7j.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AiS0rqlT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AiS0rqlT.gz
new file mode 100644
index 000000000..9ea20ca6b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AiS0rqlT.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Al28oHqe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Al28oHqe.gz
new file mode 100644
index 000000000..473239588
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Al28oHqe.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Auic7m2e.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Auic7m2e.gz
new file mode 100644
index 000000000..d6b4fe7d6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Auic7m2e.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AyefZHy+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AyefZHy+.gz
new file mode 100644
index 000000000..b2d40d5a5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AyefZHy+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIKlb2mF.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIKlb2mF.gz
new file mode 100644
index 000000000..aa6957e6c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIKlb2mF.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIsU3WPu.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIsU3WPu.gz
new file mode 100644
index 000000000..540db8533
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIsU3WPu.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BJ8SPSAw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BJ8SPSAw.gz
new file mode 100644
index 000000000..e4ff9ad64
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BJ8SPSAw.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZK+fHbG.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZK+fHbG.gz
new file mode 100644
index 000000000..92b034ece
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZK+fHbG.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZjUAGYF.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZjUAGYF.gz
new file mode 100644
index 000000000..cfea19e43
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZjUAGYF.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BvfzaxMj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BvfzaxMj.gz
new file mode 100644
index 000000000..2d9cae734
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BvfzaxMj.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C3+iefBz.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C3+iefBz.gz
new file mode 100644
index 000000000..1ac4535d5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C3+iefBz.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C8UJ3g6+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C8UJ3g6+.gz
new file mode 100644
index 000000000..a2fa082a0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C8UJ3g6+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CLacD+ws.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CLacD+ws.gz
new file mode 100644
index 000000000..15414951e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CLacD+ws.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CXfYACeM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CXfYACeM.gz
new file mode 100644
index 000000000..2ee264219
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CXfYACeM.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CpaZ+yDJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CpaZ+yDJ.gz
new file mode 100644
index 000000000..6f8620f3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CpaZ+yDJ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/D+1RZpX+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/D+1RZpX+.gz
new file mode 100644
index 000000000..aabe6fb8d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/D+1RZpX+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/DQMhD7xB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/DQMhD7xB.gz
new file mode 100644
index 000000000..e459afa1b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/DQMhD7xB.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Dts75qHk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Dts75qHk.gz
new file mode 100644
index 000000000..165ee98e1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Dts75qHk.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EUxiBhbo.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EUxiBhbo.gz
new file mode 100644
index 000000000..dec4a4c2c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EUxiBhbo.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EYahmw6e.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EYahmw6e.gz
new file mode 100644
index 000000000..b2dcda1b9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EYahmw6e.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FC9BWSVd.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FC9BWSVd.gz
new file mode 100644
index 000000000..584db3961
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FC9BWSVd.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FLR8M+Ah.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FLR8M+Ah.gz
new file mode 100644
index 000000000..6fd854304
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FLR8M+Ah.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FrC55Mh+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FrC55Mh+.gz
new file mode 100644
index 000000000..049d1a876
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FrC55Mh+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GF4ojFS8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GF4ojFS8.gz
new file mode 100644
index 000000000..37e906384
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GF4ojFS8.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GV2n5d78.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GV2n5d78.gz
new file mode 100644
index 000000000..784dd5897
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GV2n5d78.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Gw2xDHXY.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Gw2xDHXY.gz
new file mode 100644
index 000000000..fb713c0c1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Gw2xDHXY.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HB8DHftC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HB8DHftC.gz
new file mode 100644
index 000000000..19711ce43
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HB8DHftC.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HOJzY8yw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HOJzY8yw.gz
new file mode 100644
index 000000000..913a3c067
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HOJzY8yw.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Hci14aiA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Hci14aiA.gz
new file mode 100644
index 000000000..aedbd1e76
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Hci14aiA.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I1MLYecy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I1MLYecy.gz
new file mode 100644
index 000000000..32cc02a03
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I1MLYecy.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I2YQl34K.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I2YQl34K.gz
new file mode 100644
index 000000000..aec64973c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I2YQl34K.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/IzxZx+Zd.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/IzxZx+Zd.gz
new file mode 100644
index 000000000..2c0acb195
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/IzxZx+Zd.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JLqYeE98.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JLqYeE98.gz
new file mode 100644
index 000000000..b6ed042e0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JLqYeE98.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JQTwC+Wp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JQTwC+Wp.gz
new file mode 100644
index 000000000..ee7d4007e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JQTwC+Wp.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/K3Vy+8xS.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/K3Vy+8xS.gz
new file mode 100644
index 000000000..62e58d83a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/K3Vy+8xS.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KQ+CIlck.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KQ+CIlck.gz
new file mode 100644
index 000000000..fa012d2cb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KQ+CIlck.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KV+7rjd+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KV+7rjd+.gz
new file mode 100644
index 000000000..a6e199d73
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KV+7rjd+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/M39mQ8FI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/M39mQ8FI.gz
new file mode 100644
index 000000000..26b257f56
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/M39mQ8FI.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MC7F1EXR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MC7F1EXR.gz
new file mode 100644
index 000000000..486efb6f3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MC7F1EXR.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MXG25MIc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MXG25MIc.gz
new file mode 100644
index 000000000..130ea0354
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MXG25MIc.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MdnBBtMp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MdnBBtMp.gz
new file mode 100644
index 000000000..458a44022
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MdnBBtMp.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MgddUi+V.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MgddUi+V.gz
new file mode 100644
index 000000000..b905654d2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MgddUi+V.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ml7uO+rW.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ml7uO+rW.gz
new file mode 100644
index 000000000..be7c473a1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ml7uO+rW.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Mx4rV4K6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Mx4rV4K6.gz
new file mode 100644
index 000000000..c115463ab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Mx4rV4K6.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N0gjLoUT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N0gjLoUT.gz
new file mode 100644
index 000000000..3a52f3467
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N0gjLoUT.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N5fruOuj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N5fruOuj.gz
new file mode 100644
index 000000000..16ad484a9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N5fruOuj.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/NdvF5+0U.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/NdvF5+0U.gz
new file mode 100644
index 000000000..a1513304e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/NdvF5+0U.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OTY+vEhj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OTY+vEhj.gz
new file mode 100644
index 000000000..b6a7e7f38
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OTY+vEhj.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OwnWA+d9.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OwnWA+d9.gz
new file mode 100644
index 000000000..e204a4197
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OwnWA+d9.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/P+OcG5X0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/P+OcG5X0.gz
new file mode 100644
index 000000000..019981999
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/P+OcG5X0.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PHTiPb3I.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PHTiPb3I.gz
new file mode 100644
index 000000000..975531bab
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PHTiPb3I.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PSzKFYQZ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PSzKFYQZ.gz
new file mode 100644
index 000000000..31185e513
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PSzKFYQZ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PWM2F7l6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PWM2F7l6.gz
new file mode 100644
index 000000000..c4a475e16
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PWM2F7l6.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PdVsjePE.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PdVsjePE.gz
new file mode 100644
index 000000000..dd7be1fdb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PdVsjePE.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PesF4wKM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PesF4wKM.gz
new file mode 100644
index 000000000..032ad3fac
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PesF4wKM.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Pxx+hP2A.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Pxx+hP2A.gz
new file mode 100644
index 000000000..f78891b76
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Pxx+hP2A.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/QmI3N8oM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/QmI3N8oM.gz
new file mode 100644
index 000000000..0f83a8957
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/QmI3N8oM.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Qpbt+CNX.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Qpbt+CNX.gz
new file mode 100644
index 000000000..ef935d7d9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Qpbt+CNX.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/R2PLP3Qe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/R2PLP3Qe.gz
new file mode 100644
index 000000000..45825c5f7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/R2PLP3Qe.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RNhSgpar.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RNhSgpar.gz
new file mode 100644
index 000000000..9d6747165
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RNhSgpar.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RP4BO9dU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RP4BO9dU.gz
new file mode 100644
index 000000000..2d3e41382
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RP4BO9dU.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Re+7LMz0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Re+7LMz0.gz
new file mode 100644
index 000000000..25bc6f6b2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Re+7LMz0.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ShbALnVZ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ShbALnVZ.gz
new file mode 100644
index 000000000..66220292e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ShbALnVZ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/SyQx+l1x.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/SyQx+l1x.gz
new file mode 100644
index 000000000..a0ddb5b4b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/SyQx+l1x.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/T02qCSL8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/T02qCSL8.gz
new file mode 100644
index 000000000..8753af853
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/T02qCSL8.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TAoxl7R3.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TAoxl7R3.gz
new file mode 100644
index 000000000..5d100fbd2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TAoxl7R3.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TBn7dkuj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TBn7dkuj.gz
new file mode 100644
index 000000000..631250ce0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TBn7dkuj.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TLqbhHzt.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TLqbhHzt.gz
new file mode 100644
index 000000000..4c2d1858f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TLqbhHzt.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TXBZ5Zv2.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TXBZ5Zv2.gz
new file mode 100644
index 000000000..a9f747107
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TXBZ5Zv2.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Tca26kuV.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Tca26kuV.gz
new file mode 100644
index 000000000..13ad4e16f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Tca26kuV.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UOQe8Dq0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UOQe8Dq0.gz
new file mode 100644
index 000000000..320ecad3c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UOQe8Dq0.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Uai5tZzn.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Uai5tZzn.gz
new file mode 100644
index 000000000..f252e9384
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Uai5tZzn.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UlOCwkJy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UlOCwkJy.gz
new file mode 100644
index 000000000..e6162bf4a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UlOCwkJy.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UsxFDlWI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UsxFDlWI.gz
new file mode 100644
index 000000000..6a53aa2a2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UsxFDlWI.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VAFs0L7p.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VAFs0L7p.gz
new file mode 100644
index 000000000..c61324393
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VAFs0L7p.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VLryMgNN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VLryMgNN.gz
new file mode 100644
index 000000000..90e84afcd
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VLryMgNN.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VadgPOEj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VadgPOEj.gz
new file mode 100644
index 000000000..94a6c7c21
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VadgPOEj.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VjzG04qc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VjzG04qc.gz
new file mode 100644
index 000000000..b9918d904
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VjzG04qc.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WGIV8QF4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WGIV8QF4.gz
new file mode 100644
index 000000000..928cfb1e6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WGIV8QF4.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WSd8vvJ+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WSd8vvJ+.gz
new file mode 100644
index 000000000..20758339b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WSd8vvJ+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WUcFp4sY.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WUcFp4sY.gz
new file mode 100644
index 000000000..84a456cee
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WUcFp4sY.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ww6LdwW+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ww6LdwW+.gz
new file mode 100644
index 000000000..9ab6c980a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ww6LdwW+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XGcG3D9f.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XGcG3D9f.gz
new file mode 100644
index 000000000..00df6e964
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XGcG3D9f.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XNRSaCAE.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XNRSaCAE.gz
new file mode 100644
index 000000000..3b6793008
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XNRSaCAE.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XtcIMN1+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XtcIMN1+.gz
new file mode 100644
index 000000000..26dbe540c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XtcIMN1+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Y7nD3u55.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Y7nD3u55.gz
new file mode 100644
index 000000000..409841413
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Y7nD3u55.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YTzkAgfa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YTzkAgfa.gz
new file mode 100644
index 000000000..a4e4c6a50
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YTzkAgfa.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Yj5BZpbw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Yj5BZpbw.gz
new file mode 100644
index 000000000..a7d13ee3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Yj5BZpbw.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YjoXTRDF.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YjoXTRDF.gz
new file mode 100644
index 000000000..32378d46b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YjoXTRDF.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YqyTTqnp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YqyTTqnp.gz
new file mode 100644
index 000000000..fe3aa79f7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YqyTTqnp.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ZqnBCdvU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ZqnBCdvU.gz
new file mode 100644
index 000000000..a89006027
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ZqnBCdvU.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/a7NX+6Gj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/a7NX+6Gj.gz
new file mode 100644
index 000000000..eac56af92
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/a7NX+6Gj.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/aOW5GZ36.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/aOW5GZ36.gz
new file mode 100644
index 000000000..8baf0ae05
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/aOW5GZ36.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ab9R18co.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ab9R18co.gz
new file mode 100644
index 000000000..a5500ecd2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ab9R18co.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/airhYZR7.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/airhYZR7.gz
new file mode 100644
index 000000000..0044b399a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/airhYZR7.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/azxx+Ymt.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/azxx+Ymt.gz
new file mode 100644
index 000000000..a88471e1d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/azxx+Ymt.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/bCA1HaC4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/bCA1HaC4.gz
new file mode 100644
index 000000000..ae8ca4647
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/bCA1HaC4.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/buLwhqjv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/buLwhqjv.gz
new file mode 100644
index 000000000..738029f3d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/buLwhqjv.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/c+Z0g9Jd.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/c+Z0g9Jd.gz
new file mode 100644
index 000000000..8707ba174
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/c+Z0g9Jd.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cTauOqcc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cTauOqcc.gz
new file mode 100644
index 000000000..e4a506e97
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cTauOqcc.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cnKLVun6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cnKLVun6.gz
new file mode 100644
index 000000000..a591af398
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cnKLVun6.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cv8v4Gsf.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cv8v4Gsf.gz
new file mode 100644
index 000000000..715a46ec7
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cv8v4Gsf.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/d1EIfJy5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/d1EIfJy5.gz
new file mode 100644
index 000000000..6fcaf4a7c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/d1EIfJy5.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dF7+Cn0+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dF7+Cn0+.gz
new file mode 100644
index 000000000..62daf116f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dF7+Cn0+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dNEnteD5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dNEnteD5.gz
new file mode 100644
index 000000000..d6db1e5fc
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dNEnteD5.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dhu3kA+T.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dhu3kA+T.gz
new file mode 100644
index 000000000..e374e801a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dhu3kA+T.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/doP+4BwJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/doP+4BwJ.gz
new file mode 100644
index 000000000..4b76352d0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/doP+4BwJ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eD8KvJQ3.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eD8KvJQ3.gz
new file mode 100644
index 000000000..1e450e10c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eD8KvJQ3.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eMg4HloL.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eMg4HloL.gz
new file mode 100644
index 000000000..adb1656d1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eMg4HloL.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eV8sjNpC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eV8sjNpC.gz
new file mode 100644
index 000000000..488100138
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eV8sjNpC.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eXag2ZQC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eXag2ZQC.gz
new file mode 100644
index 000000000..88a1a9012
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eXag2ZQC.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eglFIRt8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eglFIRt8.gz
new file mode 100644
index 000000000..7d775bba1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eglFIRt8.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eoXnBbVy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eoXnBbVy.gz
new file mode 100644
index 000000000..3123b88f9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eoXnBbVy.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/erUA+NWw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/erUA+NWw.gz
new file mode 100644
index 000000000..5ea184890
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/erUA+NWw.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ersvoADk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ersvoADk.gz
new file mode 100644
index 000000000..ac85744b4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ersvoADk.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f+LGd4Hi.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f+LGd4Hi.gz
new file mode 100644
index 000000000..97a8d5a68
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f+LGd4Hi.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f2DKowff.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f2DKowff.gz
new file mode 100644
index 000000000..c746855bb
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f2DKowff.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fD3oFEeK.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fD3oFEeK.gz
new file mode 100644
index 000000000..518e0b994
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fD3oFEeK.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fY+6+YAq.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fY+6+YAq.gz
new file mode 100644
index 000000000..ab15d34f5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fY+6+YAq.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fyIBe1B+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fyIBe1B+.gz
new file mode 100644
index 000000000..0c27c81e3
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fyIBe1B+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g+MJNN4k.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g+MJNN4k.gz
new file mode 100644
index 000000000..e9d8511ba
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g+MJNN4k.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g0EfU1lN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g0EfU1lN.gz
new file mode 100644
index 000000000..53be14b0e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g0EfU1lN.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gDnazL5i.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gDnazL5i.gz
new file mode 100644
index 000000000..89eee14e5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gDnazL5i.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gPl5Gair.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gPl5Gair.gz
new file mode 100644
index 000000000..61bea88c0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gPl5Gair.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gfZzpc+E.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gfZzpc+E.gz
new file mode 100644
index 000000000..b89fde0a2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gfZzpc+E.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hDAoPmg+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hDAoPmg+.gz
new file mode 100644
index 000000000..7a94a1d69
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hDAoPmg+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hbtsH5K4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hbtsH5K4.gz
new file mode 100644
index 000000000..5a161e44d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hbtsH5K4.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hwcDQ0wD.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hwcDQ0wD.gz
new file mode 100644
index 000000000..284e2f93f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hwcDQ0wD.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iD6mhcW+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iD6mhcW+.gz
new file mode 100644
index 000000000..076bd4ef2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iD6mhcW+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ith6wL5e.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ith6wL5e.gz
new file mode 100644
index 000000000..f698867ed
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ith6wL5e.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iv7rlSof.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iv7rlSof.gz
new file mode 100644
index 000000000..0dfb9aa92
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iv7rlSof.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/j4MZS3uC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/j4MZS3uC.gz
new file mode 100644
index 000000000..9568e2def
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/j4MZS3uC.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jL+JS45b.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jL+JS45b.gz
new file mode 100644
index 000000000..e69a99c4c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jL+JS45b.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jplbLOUI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jplbLOUI.gz
new file mode 100644
index 000000000..368607d17
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jplbLOUI.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/k6c5l4Zs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/k6c5l4Zs.gz
new file mode 100644
index 000000000..054492162
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/k6c5l4Zs.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kIo+3vTu.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kIo+3vTu.gz
new file mode 100644
index 000000000..1eee41b39
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kIo+3vTu.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kJId7wuk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kJId7wuk.gz
new file mode 100644
index 000000000..21f943c2b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kJId7wuk.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kXOEfuAj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kXOEfuAj.gz
new file mode 100644
index 000000000..dedf0dda2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kXOEfuAj.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/lf1J5B9O.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/lf1J5B9O.gz
new file mode 100644
index 000000000..86250c0c9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/lf1J5B9O.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/luQkTI9I.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/luQkTI9I.gz
new file mode 100644
index 000000000..cebbb4637
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/luQkTI9I.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/meTe+alg.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/meTe+alg.gz
new file mode 100644
index 000000000..54adc7112
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/meTe+alg.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/moXpYGUT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/moXpYGUT.gz
new file mode 100644
index 000000000..cbf0c2ce4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/moXpYGUT.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpGGxn+A.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpGGxn+A.gz
new file mode 100644
index 000000000..25cb1d748
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpGGxn+A.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpOnjY3E.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpOnjY3E.gz
new file mode 100644
index 000000000..97c6bc6f9
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpOnjY3E.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/n5D1Bw2m.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/n5D1Bw2m.gz
new file mode 100644
index 000000000..65a37c59e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/n5D1Bw2m.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nNpXywCp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nNpXywCp.gz
new file mode 100644
index 000000000..ba0513f2e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nNpXywCp.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nOj7PPDe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nOj7PPDe.gz
new file mode 100644
index 000000000..bc93ed477
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nOj7PPDe.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nw4hF8e4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nw4hF8e4.gz
new file mode 100644
index 000000000..46a2f9e87
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nw4hF8e4.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/p4ttQeYL.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/p4ttQeYL.gz
new file mode 100644
index 000000000..c0ef3a932
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/p4ttQeYL.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pBXJTrNX.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pBXJTrNX.gz
new file mode 100644
index 000000000..74bb09b2a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pBXJTrNX.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pCfoiMIR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pCfoiMIR.gz
new file mode 100644
index 000000000..d5d520f4d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pCfoiMIR.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pFQ6kByw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pFQ6kByw.gz
new file mode 100644
index 000000000..a04516d0b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pFQ6kByw.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pghmNRvs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pghmNRvs.gz
new file mode 100644
index 000000000..13cf892df
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pghmNRvs.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/phm29G91.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/phm29G91.gz
new file mode 100644
index 000000000..22dcce5c4
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/phm29G91.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/q+5LDeSN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/q+5LDeSN.gz
new file mode 100644
index 000000000..2f88b9725
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/q+5LDeSN.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qGYkmnM5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qGYkmnM5.gz
new file mode 100644
index 000000000..fc92ffa50
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qGYkmnM5.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qQ8gsDqb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qQ8gsDqb.gz
new file mode 100644
index 000000000..c9726119a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qQ8gsDqb.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qWgUeh2N.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qWgUeh2N.gz
new file mode 100644
index 000000000..89705cb32
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qWgUeh2N.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qf8xv0rk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qf8xv0rk.gz
new file mode 100644
index 000000000..666b33824
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qf8xv0rk.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qlam8W+O.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qlam8W+O.gz
new file mode 100644
index 000000000..ff307ac7d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qlam8W+O.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qtLOehkv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qtLOehkv.gz
new file mode 100644
index 000000000..3f46cd8c5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qtLOehkv.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/r5tIrKQJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/r5tIrKQJ.gz
new file mode 100644
index 000000000..bcb263e26
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/r5tIrKQJ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rLFEcJ3K.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rLFEcJ3K.gz
new file mode 100644
index 000000000..3da0cac6c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rLFEcJ3K.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rUmG1DOI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rUmG1DOI.gz
new file mode 100644
index 000000000..b11efc1e8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rUmG1DOI.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ryPTNASP.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ryPTNASP.gz
new file mode 100644
index 000000000..080684180
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ryPTNASP.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s0WbNtC8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s0WbNtC8.gz
new file mode 100644
index 000000000..8db056fd8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s0WbNtC8.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s45K7klr.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s45K7klr.gz
new file mode 100644
index 000000000..d55a1041b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s45K7klr.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/sNCgE1gc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/sNCgE1gc.gz
new file mode 100644
index 000000000..5809ced8b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/sNCgE1gc.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/snRMAVo0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/snRMAVo0.gz
new file mode 100644
index 000000000..ba7aa1c8e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/snRMAVo0.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tALjiTtN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tALjiTtN.gz
new file mode 100644
index 000000000..31bc36798
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tALjiTtN.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tDSRJfdl.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tDSRJfdl.gz
new file mode 100644
index 000000000..2d3532369
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tDSRJfdl.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tQEbKKnv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tQEbKKnv.gz
new file mode 100644
index 000000000..574afdeae
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tQEbKKnv.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tZlcgzg+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tZlcgzg+.gz
new file mode 100644
index 000000000..8550ce916
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tZlcgzg+.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/toKSBfJx.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/toKSBfJx.gz
new file mode 100644
index 000000000..b15049b28
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/toKSBfJx.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u0AXn6bb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u0AXn6bb.gz
new file mode 100644
index 000000000..e43da26d6
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u0AXn6bb.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u2NKCkEW.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u2NKCkEW.gz
new file mode 100644
index 000000000..6e0df739d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u2NKCkEW.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/uFYGyXgI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/uFYGyXgI.gz
new file mode 100644
index 000000000..8c1d9c111
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/uFYGyXgI.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vHFCIeEH.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vHFCIeEH.gz
new file mode 100644
index 000000000..7dbc5551a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vHFCIeEH.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vbyEHz+f.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vbyEHz+f.gz
new file mode 100644
index 000000000..c2a578b9b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vbyEHz+f.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ve2DCp+Y.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ve2DCp+Y.gz
new file mode 100644
index 000000000..a42bfd64e
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ve2DCp+Y.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vmGJlw0k.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vmGJlw0k.gz
new file mode 100644
index 000000000..a5f3bd197
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vmGJlw0k.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/w4rVORDG.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/w4rVORDG.gz
new file mode 100644
index 000000000..e9a371ad1
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/w4rVORDG.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wCf576wv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wCf576wv.gz
new file mode 100644
index 000000000..540e2d52a
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wCf576wv.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wnjmgrOa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wnjmgrOa.gz
new file mode 100644
index 000000000..4757af788
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wnjmgrOa.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xKS2CAdA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xKS2CAdA.gz
new file mode 100644
index 000000000..762f1e641
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xKS2CAdA.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xZTvHMo7.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xZTvHMo7.gz
new file mode 100644
index 000000000..af517b11c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xZTvHMo7.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xhJdd8MR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xhJdd8MR.gz
new file mode 100644
index 000000000..e81ea18e8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xhJdd8MR.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xssRNhxe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xssRNhxe.gz
new file mode 100644
index 000000000..921ed3cf8
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xssRNhxe.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xwCIKg4r.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xwCIKg4r.gz
new file mode 100644
index 000000000..ec0c14839
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xwCIKg4r.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/y9tSwMK5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/y9tSwMK5.gz
new file mode 100644
index 000000000..cb7fac90b
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/y9tSwMK5.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yR+Yk9oU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yR+Yk9oU.gz
new file mode 100644
index 000000000..d9a7fa4f5
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yR+Yk9oU.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yW+OvcWi.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yW+OvcWi.gz
new file mode 100644
index 000000000..5c99879ca
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yW+OvcWi.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ys2HsIxk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ys2HsIxk.gz
new file mode 100644
index 000000000..b6e7faa73
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ys2HsIxk.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ysVyZ++O.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ysVyZ++O.gz
new file mode 100644
index 000000000..085a4bc5d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ysVyZ++O.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zH8vquy4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zH8vquy4.gz
new file mode 100644
index 000000000..6d40cec07
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zH8vquy4.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zfFUKSwe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zfFUKSwe.gz
new file mode 100644
index 000000000..3767fd88f
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zfFUKSwe.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zklOABeC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zklOABeC.gz
new file mode 100644
index 000000000..0e2785ea2
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zklOABeC.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/znqmWMdE.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/znqmWMdE.gz
new file mode 100644
index 000000000..443e9080c
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/znqmWMdE.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zwebL8CJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zwebL8CJ.gz
new file mode 100644
index 000000000..b7c57202d
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zwebL8CJ.gz differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/ref/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/ref/GraphSample.dll
new file mode 100644
index 000000000..fb17371d0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/ref/GraphSample.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/refint/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/refint/GraphSample.dll
new file mode 100644
index 000000000..fb17371d0
Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/refint/GraphSample.dll differ
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/Overview.razor.rz.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/Overview.razor.rz.scp.css
new file mode 100644
index 000000000..d66c21707
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/Overview.razor.rz.scp.css
@@ -0,0 +1,628 @@
+
+.chat-bot[b-omvmab0aii] {
+ position: fixed;
+ bottom: 20px;
+ right: 20px;
+ z-index: 3;
+}
+
+/*
+*Generic
+*/
+ul[b-omvmab0aii] {
+ list-style-type: none;
+}
+
+.mainContent[b-omvmab0aii] {
+ display: flex;
+ z-index: 25;
+}
+
+.emailTeamsSection[b-omvmab0aii] {
+ width: 85%;
+}
+
+/*
+* EMAILS
+*/
+.mailPage[b-omvmab0aii] {
+ height: 70vh;
+ display: flex;
+}
+
+.emailBar[b-omvmab0aii] {
+ height: 100%;
+ width: 25%;
+ overflow-y: scroll;
+}
+
+.emailSelect[b-omvmab0aii] {
+}
+
+.emailSelectBox[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ padding: 5px;
+ padding-left: 15px;
+ display: flex;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+}
+
+ .emailSelectBox:hover[b-omvmab0aii] {
+ border-radius: 10px;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ }
+
+.emailData[b-omvmab0aii] {
+ width: 70%;
+}
+
+ .emailData .sender[b-omvmab0aii] {
+ padding-right: 10px;
+ margin-bottom: 0;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .subject[b-omvmab0aii] {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .content[b-omvmab0aii] {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+
+.emailRight[b-omvmab0aii] {
+ width: 30%;
+ display: flex;
+ flex-direction: column;
+}
+
+ .emailRight .emailRightData[b-omvmab0aii] {
+ display: flex;
+ width: 100%;
+ justify-content: space-between;
+ }
+
+.emailRightData .timing[b-omvmab0aii] {
+}
+
+.emailRightData .dotOn[b-omvmab0aii] {
+ height: 15px;
+ width: 15px;
+ background-color: #ADD8E6;
+ border: 1px solid #cdd4d4;
+ border-radius: 50%;
+}
+
+.emailRightData .dotOff[b-omvmab0aii] {
+ width: 10%;
+ height: 15px;
+ width: 15px;
+ border: 1px solid #cdd4d4;
+ background-color: white;
+ border-radius: 50%;
+}
+
+.emailRight .emailInteraction[b-omvmab0aii] {
+ display: flex;
+}
+
+
+$delete2-red: red;
+
+.btn[b-omvmab0aii] {
+}
+
+.btn-delete[b-omvmab0aii] {
+
+}
+
+.btn2[b-omvmab0aii] {
+ display: flex;
+ align-items: center;
+ background: none;
+ border: none;
+ height: 35px;
+ cursor: pointer;
+}
+
+ .btn2:focus[b-omvmab0aii] {
+ outline: none;
+ border: none;
+ }
+
+ .btn2 .mdi[b-omvmab0aii] {
+ margin-right: 4px;
+ margin-left: 4px;
+ }
+
+ .btn2 > .mdi-delete[b-omvmab0aii] {
+ color: red;
+ }
+
+ .btn2 > .mdi-reply-outline[b-omvmab0aii] {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-reply-all-outline[b-omvmab0aii] {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-send-outline[b-omvmab0aii] {
+ color: blue;
+ }
+
+ .btn2 > .mdi-close[b-omvmab0aii] {
+ color: black;
+ }
+
+.btn-delete2[b-omvmab0aii] {
+ font-size: 16px;
+}
+
+ .btn-delete2 > .mdi-delete-empty[b-omvmab0aii] {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2 > .mdi-reply[b-omvmab0aii] {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-reply-all[b-omvmab0aii] {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-send[b-omvmab0aii] {
+ display: none;
+ color: blue;
+ }
+
+ .btn-delete2 > .mdi-close-outline[b-omvmab0aii] {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2:hover[b-omvmab0aii] {
+ background-color: lighten(red, 48%);
+ }
+
+ .btn-delete2:hover > .mdi-delete-empty[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-delete[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-send[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-send-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-close-outline[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-close[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:focus[b-omvmab0aii] {
+ box-shadow: 0px 0px 0px 4px lighten(red, 40%);
+ }
+
+.emailGap[b-omvmab0aii] {
+ padding-bottom: 5px;
+ opacity: 0;
+}
+
+.emailDisplay[b-omvmab0aii] {
+ width: 75%;
+ overflow-y: scroll;
+ margin-left: 25px;
+ margin-top: 5px;
+}
+
+.emailDisplayContent[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ height: 100%;
+}
+
+ .emailDisplayContent .heading[b-omvmab0aii] {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ margin-bottom: 10px;
+
+ display: flex;
+ justify-content: space-between;
+ }
+ .emailDisplayContent .heading .ccDetails[b-omvmab0aii] {
+ width: 85%;
+ }
+
+ .emailDisplayContent .heading .emailInteraction[b-omvmab0aii] {
+ width: 15%;
+ display: flex;
+ }
+
+ .emailDisplayContent .heading .ccDetails .subject[b-omvmab0aii] {
+ overflow-wrap: break-all;
+ font-size: large;
+ padding: 10px;
+ margin-bottom: 5px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .sender[b-omvmab0aii] {
+ padding-left: 10px;
+ margin-bottom: 0px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .recipient[b-omvmab0aii] {
+ padding-left: 10px;
+ font-size: small;
+ margin-bottom: 0px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .content[b-omvmab0aii] {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ width: 100%;
+ }
+
+ .emailDisplayContent .content .body[b-omvmab0aii] {
+ word-wrap: break-word;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .emailReply[b-omvmab0aii] {
+ width: 100%;
+ margin-top:10px;
+ }
+
+ .emailReply[b-omvmab0aii] {
+ }
+
+ .emailReply .heading[b-omvmab0aii] {
+ display:flex;
+ flex-direction: column;
+ padding: 20px;
+ margin-bottom: 0px;
+ }
+ .heading .subject[b-omvmab0aii] {
+ font-size:large;
+ margin-bottom: 0px;
+ }
+ .heading .recipient[b-omvmab0aii] {
+ margin-bottom: 5px;
+ }
+
+ .emailReply .emailResponseContent[b-omvmab0aii]{
+ width: 100%;
+ display: flex;
+ }
+
+ .replyDetails[b-omvmab0aii] {
+ display: flex;
+ justify-content: space-between;
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .replyContent[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .mdi-close[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+
+ .emailResponseContent .mdi-send[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+ .emailResponseContent .responseBox[b-omvmab0aii] {
+ margin-top: 20px;
+ width:100px;
+ }
+/*
+* TEAMS
+*/
+
+.teamsPage[b-omvmab0aii] {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.teamsBar[b-omvmab0aii] {
+ height: 100%;
+ width: 20%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+.teamsSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+}
+ .teamName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.channelBar[b-omvmab0aii] {
+ height: 100%;
+ width: 15%;
+ margin-left: 10px;
+ margin-top: 0;
+ padding-top: 5px;
+}
+ .channelSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+
+ .channelName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.teamChatBar[b-omvmab0aii] {
+ width: 65%;
+ overflow-y: scroll;
+ display: flex;
+ flex-direction: column-reverse;
+
+ margin-left: 10px;
+}
+
+.teamsMessageBlock[b-omvmab0aii] {
+ padding: 20px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+}
+
+.nestedMessages[b-omvmab0aii] {
+ padding: 10px;
+}
+
+.teamMessageBlock[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+
+ margin-top: 20px;
+ padding-top:10px;
+ padding-bottom:10px;
+}
+
+.teamChatInital[b-omvmab0aii] {
+ display:flex;
+ justify-content:space-between;
+ padding-left: 20px;
+ margin-bottom: 10px;
+ margin-top: 10px;
+}
+
+ .teamChatInital .details[b-omvmab0aii] {
+ width: 90%;
+ }
+ .teamChatInital .interact[b-omvmab0aii] {
+ width: 10%;
+ }
+
+.teamChatName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+}
+
+.teamChatContent[b-omvmab0aii] {
+ width: 100%;
+ padding-bottom: 5px;
+ font-size:medium;
+}
+
+.teamReplySection[b-omvmab0aii] {
+ width: 70%;
+ margin-bottom: 10px;
+}
+
+.teamInteract[b-omvmab0aii] {
+ display: flex;
+}
+
+.teamMsgInteract[b-omvmab0aii] {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+}
+
+/*
+* Chats
+*/
+.chatsPage[b-omvmab0aii] {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.mypChats[b-omvmab0aii] {
+ width: 20%;
+ height: 100%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+ .chatSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+ .chatName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.myChatBar[b-omvmab0aii] {
+ width: 80%;
+}
+
+
+/*
+* Calendar section
+*/
+.calendarSection[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ width: 15%;
+ height: 70vh;
+ flex-direction: column;
+ display: flex;
+ overflow-y: scroll;
+ margin-left: 20px;
+ margin-top: 40px;
+}
+
+ .calendarSection .event[b-omvmab0aii] {
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ padding: 10px;
+ margin-top:5px;
+ }
+ .event .subject[b-omvmab0aii] {
+ font-size:large;
+ padding-bottom: 0px;
+ margin-bottom: 0px;
+ text-align: center;
+ }
+
+ .event .timing[b-omvmab0aii] {
+ }
+ .event .timing .date[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+ .event .timing .time[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+ .event .organiser[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+/*
+* Group settings
+*/
+.groupSec[b-omvmab0aii] {
+ display: flex;
+}
+
+.groupSettings[b-omvmab0aii] {
+ display: flex;
+}
+
+.addGroup[b-omvmab0aii] {
+ display: flex;
+}
+
+.testing1[b-omvmab0aii] {
+ position: absolute;
+ z-index: 99;
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/SummarizeFiles.razor.rz.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/SummarizeFiles.razor.rz.scp.css
new file mode 100644
index 000000000..ce4c9f99f
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/SummarizeFiles.razor.rz.scp.css
@@ -0,0 +1,5 @@
+[b-8cwxo513pf] > fluent-dialog::part(control) {
+ --dialog-width: 45%;
+ --dialog-height: 65%;
+ border: 2px ridge black;
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css
new file mode 100644
index 000000000..9d5761810
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css
@@ -0,0 +1,26 @@
+.page[b-bl0j7m4p9v] {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+}
+
+
+.content[b-bl0j7m4p9v] {
+ width: 100%;
+}
+
+.outerSearch[b-bl0j7m4p9v] {
+ /* put this search bar in line with the nav bar */
+ position: fixed;
+ top: 20px;
+ left: 11rem;
+ z-index: 4;
+}
+
+.seperateNavBar[b-bl0j7m4p9v] {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ z-index: 3;
+}
\ No newline at end of file
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/bundle/GraphSample.styles.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/bundle/GraphSample.styles.css
new file mode 100644
index 000000000..cec227251
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/bundle/GraphSample.styles.css
@@ -0,0 +1,665 @@
+@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
+@import '_content/Microsoft.Fast.Components.FluentUI/Microsoft.Fast.Components.FluentUI.bundle.scp.css';
+
+/* /Pages/Overview.razor.rz.scp.css */
+
+.chat-bot[b-omvmab0aii] {
+ position: fixed;
+ bottom: 20px;
+ right: 20px;
+ z-index: 3;
+}
+
+/*
+*Generic
+*/
+ul[b-omvmab0aii] {
+ list-style-type: none;
+}
+
+.mainContent[b-omvmab0aii] {
+ display: flex;
+ z-index: 25;
+}
+
+.emailTeamsSection[b-omvmab0aii] {
+ width: 85%;
+}
+
+/*
+* EMAILS
+*/
+.mailPage[b-omvmab0aii] {
+ height: 70vh;
+ display: flex;
+}
+
+.emailBar[b-omvmab0aii] {
+ height: 100%;
+ width: 25%;
+ overflow-y: scroll;
+}
+
+.emailSelect[b-omvmab0aii] {
+}
+
+.emailSelectBox[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ padding: 5px;
+ padding-left: 15px;
+ display: flex;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+}
+
+ .emailSelectBox:hover[b-omvmab0aii] {
+ border-radius: 10px;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ }
+
+.emailData[b-omvmab0aii] {
+ width: 70%;
+}
+
+ .emailData .sender[b-omvmab0aii] {
+ padding-right: 10px;
+ margin-bottom: 0;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .subject[b-omvmab0aii] {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .content[b-omvmab0aii] {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+
+.emailRight[b-omvmab0aii] {
+ width: 30%;
+ display: flex;
+ flex-direction: column;
+}
+
+ .emailRight .emailRightData[b-omvmab0aii] {
+ display: flex;
+ width: 100%;
+ justify-content: space-between;
+ }
+
+.emailRightData .timing[b-omvmab0aii] {
+}
+
+.emailRightData .dotOn[b-omvmab0aii] {
+ height: 15px;
+ width: 15px;
+ background-color: #ADD8E6;
+ border: 1px solid #cdd4d4;
+ border-radius: 50%;
+}
+
+.emailRightData .dotOff[b-omvmab0aii] {
+ width: 10%;
+ height: 15px;
+ width: 15px;
+ border: 1px solid #cdd4d4;
+ background-color: white;
+ border-radius: 50%;
+}
+
+.emailRight .emailInteraction[b-omvmab0aii] {
+ display: flex;
+}
+
+
+$delete2-red: red;
+
+.btn[b-omvmab0aii] {
+}
+
+.btn-delete[b-omvmab0aii] {
+
+}
+
+.btn2[b-omvmab0aii] {
+ display: flex;
+ align-items: center;
+ background: none;
+ border: none;
+ height: 35px;
+ cursor: pointer;
+}
+
+ .btn2:focus[b-omvmab0aii] {
+ outline: none;
+ border: none;
+ }
+
+ .btn2 .mdi[b-omvmab0aii] {
+ margin-right: 4px;
+ margin-left: 4px;
+ }
+
+ .btn2 > .mdi-delete[b-omvmab0aii] {
+ color: red;
+ }
+
+ .btn2 > .mdi-reply-outline[b-omvmab0aii] {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-reply-all-outline[b-omvmab0aii] {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-send-outline[b-omvmab0aii] {
+ color: blue;
+ }
+
+ .btn2 > .mdi-close[b-omvmab0aii] {
+ color: black;
+ }
+
+.btn-delete2[b-omvmab0aii] {
+ font-size: 16px;
+}
+
+ .btn-delete2 > .mdi-delete-empty[b-omvmab0aii] {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2 > .mdi-reply[b-omvmab0aii] {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-reply-all[b-omvmab0aii] {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-send[b-omvmab0aii] {
+ display: none;
+ color: blue;
+ }
+
+ .btn-delete2 > .mdi-close-outline[b-omvmab0aii] {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2:hover[b-omvmab0aii] {
+ background-color: lighten(red, 48%);
+ }
+
+ .btn-delete2:hover > .mdi-delete-empty[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-delete[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-send[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-send-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-close-outline[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-close[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:focus[b-omvmab0aii] {
+ box-shadow: 0px 0px 0px 4px lighten(red, 40%);
+ }
+
+.emailGap[b-omvmab0aii] {
+ padding-bottom: 5px;
+ opacity: 0;
+}
+
+.emailDisplay[b-omvmab0aii] {
+ width: 75%;
+ overflow-y: scroll;
+ margin-left: 25px;
+ margin-top: 5px;
+}
+
+.emailDisplayContent[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ height: 100%;
+}
+
+ .emailDisplayContent .heading[b-omvmab0aii] {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ margin-bottom: 10px;
+
+ display: flex;
+ justify-content: space-between;
+ }
+ .emailDisplayContent .heading .ccDetails[b-omvmab0aii] {
+ width: 85%;
+ }
+
+ .emailDisplayContent .heading .emailInteraction[b-omvmab0aii] {
+ width: 15%;
+ display: flex;
+ }
+
+ .emailDisplayContent .heading .ccDetails .subject[b-omvmab0aii] {
+ overflow-wrap: break-all;
+ font-size: large;
+ padding: 10px;
+ margin-bottom: 5px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .sender[b-omvmab0aii] {
+ padding-left: 10px;
+ margin-bottom: 0px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .recipient[b-omvmab0aii] {
+ padding-left: 10px;
+ font-size: small;
+ margin-bottom: 0px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .content[b-omvmab0aii] {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ width: 100%;
+ }
+
+ .emailDisplayContent .content .body[b-omvmab0aii] {
+ word-wrap: break-word;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .emailReply[b-omvmab0aii] {
+ width: 100%;
+ margin-top:10px;
+ }
+
+ .emailReply[b-omvmab0aii] {
+ }
+
+ .emailReply .heading[b-omvmab0aii] {
+ display:flex;
+ flex-direction: column;
+ padding: 20px;
+ margin-bottom: 0px;
+ }
+ .heading .subject[b-omvmab0aii] {
+ font-size:large;
+ margin-bottom: 0px;
+ }
+ .heading .recipient[b-omvmab0aii] {
+ margin-bottom: 5px;
+ }
+
+ .emailReply .emailResponseContent[b-omvmab0aii]{
+ width: 100%;
+ display: flex;
+ }
+
+ .replyDetails[b-omvmab0aii] {
+ display: flex;
+ justify-content: space-between;
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .replyContent[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .mdi-close[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+
+ .emailResponseContent .mdi-send[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+ .emailResponseContent .responseBox[b-omvmab0aii] {
+ margin-top: 20px;
+ width:100px;
+ }
+/*
+* TEAMS
+*/
+
+.teamsPage[b-omvmab0aii] {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.teamsBar[b-omvmab0aii] {
+ height: 100%;
+ width: 20%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+.teamsSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+}
+ .teamName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.channelBar[b-omvmab0aii] {
+ height: 100%;
+ width: 15%;
+ margin-left: 10px;
+ margin-top: 0;
+ padding-top: 5px;
+}
+ .channelSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+
+ .channelName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.teamChatBar[b-omvmab0aii] {
+ width: 65%;
+ overflow-y: scroll;
+ display: flex;
+ flex-direction: column-reverse;
+
+ margin-left: 10px;
+}
+
+.teamsMessageBlock[b-omvmab0aii] {
+ padding: 20px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+}
+
+.nestedMessages[b-omvmab0aii] {
+ padding: 10px;
+}
+
+.teamMessageBlock[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+
+ margin-top: 20px;
+ padding-top:10px;
+ padding-bottom:10px;
+}
+
+.teamChatInital[b-omvmab0aii] {
+ display:flex;
+ justify-content:space-between;
+ padding-left: 20px;
+ margin-bottom: 10px;
+ margin-top: 10px;
+}
+
+ .teamChatInital .details[b-omvmab0aii] {
+ width: 90%;
+ }
+ .teamChatInital .interact[b-omvmab0aii] {
+ width: 10%;
+ }
+
+.teamChatName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+}
+
+.teamChatContent[b-omvmab0aii] {
+ width: 100%;
+ padding-bottom: 5px;
+ font-size:medium;
+}
+
+.teamReplySection[b-omvmab0aii] {
+ width: 70%;
+ margin-bottom: 10px;
+}
+
+.teamInteract[b-omvmab0aii] {
+ display: flex;
+}
+
+.teamMsgInteract[b-omvmab0aii] {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+}
+
+/*
+* Chats
+*/
+.chatsPage[b-omvmab0aii] {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.mypChats[b-omvmab0aii] {
+ width: 20%;
+ height: 100%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+ .chatSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+ .chatName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.myChatBar[b-omvmab0aii] {
+ width: 80%;
+}
+
+
+/*
+* Calendar section
+*/
+.calendarSection[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ width: 15%;
+ height: 70vh;
+ flex-direction: column;
+ display: flex;
+ overflow-y: scroll;
+ margin-left: 20px;
+ margin-top: 40px;
+}
+
+ .calendarSection .event[b-omvmab0aii] {
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ padding: 10px;
+ margin-top:5px;
+ }
+ .event .subject[b-omvmab0aii] {
+ font-size:large;
+ padding-bottom: 0px;
+ margin-bottom: 0px;
+ text-align: center;
+ }
+
+ .event .timing[b-omvmab0aii] {
+ }
+ .event .timing .date[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+ .event .timing .time[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+ .event .organiser[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+/*
+* Group settings
+*/
+.groupSec[b-omvmab0aii] {
+ display: flex;
+}
+
+.groupSettings[b-omvmab0aii] {
+ display: flex;
+}
+
+.addGroup[b-omvmab0aii] {
+ display: flex;
+}
+
+.testing1[b-omvmab0aii] {
+ position: absolute;
+ z-index: 99;
+}
+/* /Pages/SummarizeFiles.razor.rz.scp.css */
+[b-8cwxo513pf] > fluent-dialog::part(control) {
+ --dialog-width: 45%;
+ --dialog-height: 65%;
+ border: 2px ridge black;
+}
+/* /Shared/MainLayout.razor.rz.scp.css */
+.page[b-bl0j7m4p9v] {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+}
+
+
+.content[b-bl0j7m4p9v] {
+ width: 100%;
+}
+
+.outerSearch[b-bl0j7m4p9v] {
+ /* put this search bar in line with the nav bar */
+ position: fixed;
+ top: 20px;
+ left: 11rem;
+ z-index: 4;
+}
+
+.seperateNavBar[b-bl0j7m4p9v] {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ z-index: 3;
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/projectbundle/GraphSample.bundle.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/projectbundle/GraphSample.bundle.scp.css
new file mode 100644
index 000000000..7dc3e5912
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/projectbundle/GraphSample.bundle.scp.css
@@ -0,0 +1,662 @@
+/* /Pages/Overview.razor.rz.scp.css */
+
+.chat-bot[b-omvmab0aii] {
+ position: fixed;
+ bottom: 20px;
+ right: 20px;
+ z-index: 3;
+}
+
+/*
+*Generic
+*/
+ul[b-omvmab0aii] {
+ list-style-type: none;
+}
+
+.mainContent[b-omvmab0aii] {
+ display: flex;
+ z-index: 25;
+}
+
+.emailTeamsSection[b-omvmab0aii] {
+ width: 85%;
+}
+
+/*
+* EMAILS
+*/
+.mailPage[b-omvmab0aii] {
+ height: 70vh;
+ display: flex;
+}
+
+.emailBar[b-omvmab0aii] {
+ height: 100%;
+ width: 25%;
+ overflow-y: scroll;
+}
+
+.emailSelect[b-omvmab0aii] {
+}
+
+.emailSelectBox[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ padding: 5px;
+ padding-left: 15px;
+ display: flex;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+}
+
+ .emailSelectBox:hover[b-omvmab0aii] {
+ border-radius: 10px;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ }
+
+.emailData[b-omvmab0aii] {
+ width: 70%;
+}
+
+ .emailData .sender[b-omvmab0aii] {
+ padding-right: 10px;
+ margin-bottom: 0;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .subject[b-omvmab0aii] {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+ .emailData .content[b-omvmab0aii] {
+ padding: 0;
+ margin-bottom: 0;
+ font-size: small;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+
+.emailRight[b-omvmab0aii] {
+ width: 30%;
+ display: flex;
+ flex-direction: column;
+}
+
+ .emailRight .emailRightData[b-omvmab0aii] {
+ display: flex;
+ width: 100%;
+ justify-content: space-between;
+ }
+
+.emailRightData .timing[b-omvmab0aii] {
+}
+
+.emailRightData .dotOn[b-omvmab0aii] {
+ height: 15px;
+ width: 15px;
+ background-color: #ADD8E6;
+ border: 1px solid #cdd4d4;
+ border-radius: 50%;
+}
+
+.emailRightData .dotOff[b-omvmab0aii] {
+ width: 10%;
+ height: 15px;
+ width: 15px;
+ border: 1px solid #cdd4d4;
+ background-color: white;
+ border-radius: 50%;
+}
+
+.emailRight .emailInteraction[b-omvmab0aii] {
+ display: flex;
+}
+
+
+$delete2-red: red;
+
+.btn[b-omvmab0aii] {
+}
+
+.btn-delete[b-omvmab0aii] {
+
+}
+
+.btn2[b-omvmab0aii] {
+ display: flex;
+ align-items: center;
+ background: none;
+ border: none;
+ height: 35px;
+ cursor: pointer;
+}
+
+ .btn2:focus[b-omvmab0aii] {
+ outline: none;
+ border: none;
+ }
+
+ .btn2 .mdi[b-omvmab0aii] {
+ margin-right: 4px;
+ margin-left: 4px;
+ }
+
+ .btn2 > .mdi-delete[b-omvmab0aii] {
+ color: red;
+ }
+
+ .btn2 > .mdi-reply-outline[b-omvmab0aii] {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-reply-all-outline[b-omvmab0aii] {
+ color: dodgerblue;
+ }
+
+ .btn2 > .mdi-send-outline[b-omvmab0aii] {
+ color: blue;
+ }
+
+ .btn2 > .mdi-close[b-omvmab0aii] {
+ color: black;
+ }
+
+.btn-delete2[b-omvmab0aii] {
+ font-size: 16px;
+}
+
+ .btn-delete2 > .mdi-delete-empty[b-omvmab0aii] {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2 > .mdi-reply[b-omvmab0aii] {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-reply-all[b-omvmab0aii] {
+ display: none;
+ color: dodgerblue;
+ }
+
+ .btn-delete2 > .mdi-send[b-omvmab0aii] {
+ display: none;
+ color: blue;
+ }
+
+ .btn-delete2 > .mdi-close-outline[b-omvmab0aii] {
+ display: none;
+ color: red;
+ }
+
+ .btn-delete2:hover[b-omvmab0aii] {
+ background-color: lighten(red, 48%);
+ }
+
+ .btn-delete2:hover > .mdi-delete-empty[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-delete[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-reply-all-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-send[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-send-outline[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:hover > .mdi-close-outline[b-omvmab0aii] {
+ display: block;
+ }
+
+ .btn-delete2:hover > .mdi-close[b-omvmab0aii] {
+ display: none;
+ }
+
+ .btn-delete2:focus[b-omvmab0aii] {
+ box-shadow: 0px 0px 0px 4px lighten(red, 40%);
+ }
+
+.emailGap[b-omvmab0aii] {
+ padding-bottom: 5px;
+ opacity: 0;
+}
+
+.emailDisplay[b-omvmab0aii] {
+ width: 75%;
+ overflow-y: scroll;
+ margin-left: 25px;
+ margin-top: 5px;
+}
+
+.emailDisplayContent[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ height: 100%;
+}
+
+ .emailDisplayContent .heading[b-omvmab0aii] {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ margin-bottom: 10px;
+
+ display: flex;
+ justify-content: space-between;
+ }
+ .emailDisplayContent .heading .ccDetails[b-omvmab0aii] {
+ width: 85%;
+ }
+
+ .emailDisplayContent .heading .emailInteraction[b-omvmab0aii] {
+ width: 15%;
+ display: flex;
+ }
+
+ .emailDisplayContent .heading .ccDetails .subject[b-omvmab0aii] {
+ overflow-wrap: break-all;
+ font-size: large;
+ padding: 10px;
+ margin-bottom: 5px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .sender[b-omvmab0aii] {
+ padding-left: 10px;
+ margin-bottom: 0px;
+ }
+
+ .emailDisplayContent .heading .ccDetails .recipient[b-omvmab0aii] {
+ padding-left: 10px;
+ font-size: small;
+ margin-bottom: 0px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .content[b-omvmab0aii] {
+ background: #ffffff;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+ width: 100%;
+ }
+
+ .emailDisplayContent .content .body[b-omvmab0aii] {
+ word-wrap: break-word;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-bottom: 15px;
+ }
+
+ .emailDisplayContent .emailReply[b-omvmab0aii] {
+ width: 100%;
+ margin-top:10px;
+ }
+
+ .emailReply[b-omvmab0aii] {
+ }
+
+ .emailReply .heading[b-omvmab0aii] {
+ display:flex;
+ flex-direction: column;
+ padding: 20px;
+ margin-bottom: 0px;
+ }
+ .heading .subject[b-omvmab0aii] {
+ font-size:large;
+ margin-bottom: 0px;
+ }
+ .heading .recipient[b-omvmab0aii] {
+ margin-bottom: 5px;
+ }
+
+ .emailReply .emailResponseContent[b-omvmab0aii]{
+ width: 100%;
+ display: flex;
+ }
+
+ .replyDetails[b-omvmab0aii] {
+ display: flex;
+ justify-content: space-between;
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .replyContent[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ }
+
+ .replyDetails .mdi-close[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+
+ .emailResponseContent .mdi-send[b-omvmab0aii] {
+ padding: 0;
+ border: none;
+ background: none;
+ font-size: large;
+ }
+
+ .emailResponseContent .responseBox[b-omvmab0aii] {
+ margin-top: 20px;
+ width:100px;
+ }
+/*
+* TEAMS
+*/
+
+.teamsPage[b-omvmab0aii] {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.teamsBar[b-omvmab0aii] {
+ height: 100%;
+ width: 20%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+.teamsSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+}
+ .teamName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.channelBar[b-omvmab0aii] {
+ height: 100%;
+ width: 15%;
+ margin-left: 10px;
+ margin-top: 0;
+ padding-top: 5px;
+}
+ .channelSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+
+ .channelName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.teamChatBar[b-omvmab0aii] {
+ width: 65%;
+ overflow-y: scroll;
+ display: flex;
+ flex-direction: column-reverse;
+
+ margin-left: 10px;
+}
+
+.teamsMessageBlock[b-omvmab0aii] {
+ padding: 20px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ box-shadow: 0 0 3px rgba(33,33,33,.2);
+}
+
+.nestedMessages[b-omvmab0aii] {
+ padding: 10px;
+}
+
+.teamMessageBlock[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+
+ margin-top: 20px;
+ padding-top:10px;
+ padding-bottom:10px;
+}
+
+.teamChatInital[b-omvmab0aii] {
+ display:flex;
+ justify-content:space-between;
+ padding-left: 20px;
+ margin-bottom: 10px;
+ margin-top: 10px;
+}
+
+ .teamChatInital .details[b-omvmab0aii] {
+ width: 90%;
+ }
+ .teamChatInital .interact[b-omvmab0aii] {
+ width: 10%;
+ }
+
+.teamChatName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+}
+
+.teamChatContent[b-omvmab0aii] {
+ width: 100%;
+ padding-bottom: 5px;
+ font-size:medium;
+}
+
+.teamReplySection[b-omvmab0aii] {
+ width: 70%;
+ margin-bottom: 10px;
+}
+
+.teamInteract[b-omvmab0aii] {
+ display: flex;
+}
+
+.teamMsgInteract[b-omvmab0aii] {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+}
+
+/*
+* Chats
+*/
+.chatsPage[b-omvmab0aii] {
+ display: flex;
+ height: 70vh;
+ width: 100%;
+}
+
+.mypChats[b-omvmab0aii] {
+ width: 20%;
+ height: 100%;
+ margin-left: 0px;
+ padding-top: 5px;
+}
+
+ .chatSelectBox[b-omvmab0aii] {
+ width: 100%;
+ font-family: 'Pavanam', sans-serif;
+ padding-left: 15px;
+ padding-top: 5px;
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ margin-bottom: 5px;
+ }
+ .chatName[b-omvmab0aii] {
+ width: 90%;
+ padding-bottom: 5px;
+ font-size: large;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90%;
+ }
+
+.myChatBar[b-omvmab0aii] {
+ width: 80%;
+}
+
+
+/*
+* Calendar section
+*/
+.calendarSection[b-omvmab0aii] {
+ font-family: 'Pavanam', sans-serif;
+ width: 15%;
+ height: 70vh;
+ flex-direction: column;
+ display: flex;
+ overflow-y: scroll;
+ margin-left: 20px;
+ margin-top: 40px;
+}
+
+ .calendarSection .event[b-omvmab0aii] {
+ border-radius: 10px;
+ border: 1px solid #cdd4d4;
+ background: #ffffff;
+ padding: 10px;
+ margin-top:5px;
+ }
+ .event .subject[b-omvmab0aii] {
+ font-size:large;
+ padding-bottom: 0px;
+ margin-bottom: 0px;
+ text-align: center;
+ }
+
+ .event .timing[b-omvmab0aii] {
+ }
+ .event .timing .date[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+ .event .timing .time[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+ .event .organiser[b-omvmab0aii] {
+ margin-bottom: 0px;
+ }
+
+/*
+* Group settings
+*/
+.groupSec[b-omvmab0aii] {
+ display: flex;
+}
+
+.groupSettings[b-omvmab0aii] {
+ display: flex;
+}
+
+.addGroup[b-omvmab0aii] {
+ display: flex;
+}
+
+.testing1[b-omvmab0aii] {
+ position: absolute;
+ z-index: 99;
+}
+/* /Pages/SummarizeFiles.razor.rz.scp.css */
+[b-8cwxo513pf] > fluent-dialog::part(control) {
+ --dialog-width: 45%;
+ --dialog-height: 65%;
+ border: 2px ridge black;
+}
+/* /Shared/MainLayout.razor.rz.scp.css */
+.page[b-bl0j7m4p9v] {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+}
+
+
+.content[b-bl0j7m4p9v] {
+ width: 100%;
+}
+
+.outerSearch[b-bl0j7m4p9v] {
+ /* put this search bar in line with the nav bar */
+ position: fixed;
+ top: 20px;
+ left: 11rem;
+ z-index: 4;
+}
+
+.seperateNavBar[b-bl0j7m4p9v] {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ z-index: 3;
+}
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.build.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.build.json
new file mode 100644
index 000000000..973e5b0a4
--- /dev/null
+++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.build.json
@@ -0,0 +1,259321 @@
+{
+ "Version": 1,
+ "Hash": "OO1WJ+mSHvosN1ADbwBdEz0MOQf7ZikaQliStbUs148=",
+ "Source": "GraphSample",
+ "BasePath": "/",
+ "Mode": "Root",
+ "ManifestType": "Build",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [
+ {
+ "Name": "GraphSample\\wwwroot",
+ "Source": "GraphSample",
+ "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\",
+ "BasePath": "/",
+ "Pattern": "**"
+ }
+ ],
+ "Assets": [
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\Blazored.Modal.bundle.scp.css",
+ "SourceId": "Blazored.Modal",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\",
+ "BasePath": "_content/Blazored.Modal",
+ "RelativePath": "Blazored.Modal.bundle.scp.css",
+ "AssetKind": "All",
+ "AssetMode": "Reference",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "ScopedCss",
+ "AssetTraitValue": "ProjectBundle",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\Blazored.Modal.bundle.scp.css"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\BlazoredModal.razor.js",
+ "SourceId": "Blazored.Modal",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\",
+ "BasePath": "_content/Blazored.Modal",
+ "RelativePath": "BlazoredModal.razor.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\BlazoredModal.razor.js"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\inputfile.js",
+ "SourceId": "BlazorInputFile",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\",
+ "BasePath": "_content/BlazorInputFile",
+ "RelativePath": "inputfile.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\inputfile.js"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\AuthenticationService.js",
+ "SourceId": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "RelativePath": "AuthenticationService.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\AuthenticationService.js"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\AuthenticationService.js",
+ "SourceId": "Microsoft.Authentication.WebAssembly.Msal",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Authentication.WebAssembly.Msal",
+ "RelativePath": "AuthenticationService.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\AuthenticationService.js"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\Anchor\\FluentAnchor.razor.js",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "Components/Anchor/FluentAnchor.razor.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\Anchor\\FluentAnchor.razor.js"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "Components/DataGrid/FluentDataGrid.razor.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\HorizontalScroll\\FluentHorizontalScroll.razor.js",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "Components/HorizontalScroll/FluentHorizontalScroll.razor.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\HorizontalScroll\\FluentHorizontalScroll.razor.js"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\reboot.css",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "css/reboot.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\reboot.css"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\variables.css",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "css/variables.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\variables.css"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Accessibility/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessibilityCheckmark/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessTime/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessTime/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessTime/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AccessTime/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Add/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquareMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquareMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquareMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSquareMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AddSubtractCircle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Airplane/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Airplane/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Airplane/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Airplane/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AirplaneTakeOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AirplaneTakeOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AirplaneTakeOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AirplaneTakeOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AirplaneTakeOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AirplaneTakeOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Album/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Album/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Album/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Album/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlbumAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlbumAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlbumAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlbumAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Alert/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertBadge/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertBadge/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertBadge/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertBadge/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertBadge/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertBadge/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertOn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertSnooze/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertUrgent/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertUrgent/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertUrgent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertUrgent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertUrgent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlertUrgent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignBottom/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterHorizontal/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignCenterVertical/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeBottom/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeBottom/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeTop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignDistributeTop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignEndHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignEndHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignEndVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignEndVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceAroundHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceAroundHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceAroundVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceAroundVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceBetweenHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceBetweenHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceBetweenVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceBetweenVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceEvenlyHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceEvenlyHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceEvenlyVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceEvenlyVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceFitVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignSpaceFitVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStartHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStartHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStartVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStartVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchHorizontal/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchHorizontal/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchVertical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchVertical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignStretchVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AlignTop/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalCat/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalDog/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalDog/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalDog/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalDog/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalDog/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalDog/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbit/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbitOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbitOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbitOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalRabbitOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AnimalTurtle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppFolder/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppGeneric/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppRecent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppRecent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppRecent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppRecent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ApprovalsApp/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Apps/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsAddIn/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsList/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsList/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsList/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsList/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsListDetail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsListDetail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsListDetail/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppsListDetail/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppStore/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppStore/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppTitle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppTitle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppTitle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AppTitle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Archive/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveArrowBack/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArchiveSettings/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitContent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitContent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitContent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitContent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightDotted/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightDotted/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightDotted/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightDotted/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightIn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightIn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightIn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitHeightIn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidthDotted/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidthDotted/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidthDotted/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowAutofitWidthDotted/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBetweenDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBetweenDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBetweenDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBetweenDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBetweenUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBetweenUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBidirectionalUpDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBounce/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBounce/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBounce/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBounce/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBounce/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowBounce/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownDouble/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownDouble/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownDouble/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownDouble/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownSplit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownSplit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownSplit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownSplit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleDownUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCircleUpRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwise/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwiseDashes/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwiseDashes/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwiseDashes/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowClockwiseDashes/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCollapseAll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCollapseAll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCollapseAll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCollapseAll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwise/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwiseDashes/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwiseDashes/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwiseDashes/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCounterclockwiseDashes/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveDownRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveUpLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveUpLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveUpRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowCurveUpRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowDownload/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEject/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEject/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowEnterUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExpand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExpand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExpand/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExpand/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowExportUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFitIn/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFitIn/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFitIn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowFitIn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForward/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownLightning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownLightning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownLightning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownLightning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowForwardDownPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookDownRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowHookUpRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowImport/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowImport/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowImport/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowImport/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowJoin/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowJoin/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximize/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximizeVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximizeVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximizeVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximizeVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximizeVertical/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMaximizeVertical/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimize/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimizeVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimizeVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimizeVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMinimizeVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMove/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMove/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMove/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMove/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMoveInward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowMoveInward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowNext/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowOutlineUpRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowParagraph/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowParagraph/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowParagraph/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowParagraph/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowParagraph/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowParagraph/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowPrevious/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedo/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempLTR/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRedoTempRTL/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeat1/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeat1/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeat1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeat1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeat1/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeat1/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAll/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAll/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAllOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAllOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAllOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAllOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAllOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRepeatAllOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReply/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyAll/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReplyDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowReset/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateClockwise/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateClockwise/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateClockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateClockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateClockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateClockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateCounterclockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateCounterclockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateCounterclockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRotateCounterclockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRouting/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRouting/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRouting/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRouting/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRoutingRectangleMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRoutingRectangleMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRoutingRectangleMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowRoutingRectangleMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowsBidirectional/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowsBidirectional/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowsBidirectional/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowsBidirectional/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowShuffleOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSort/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDownLines/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDownLines/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDownLines/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDownLines/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDownLines/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortDownLines/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSortUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSplit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSplit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSplit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSplit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSplit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSplit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSprint/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSprint/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSprint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSprint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSquareDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSquareDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSquareDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSquareDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepIn/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepInRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOut/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOver/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOver/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOver/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowStepOver/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSwap/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSwap/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSwap/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSwap/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncOff/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncOff/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowSyncOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrending/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingLines/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingLines/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingLines/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingLines/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSparkle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSparkle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSparkle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingSparkle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingWrench/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingWrench/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingWrench/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTrendingWrench/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnBidirectionalDownRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnBidirectionalDownRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnBidirectionalDownRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnBidirectionalDownRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnDownUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnLeftUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnRightUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowTurnUpLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndo/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempLTR/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUndoTempRTL/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpload/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpload/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpload/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpload/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpload/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpload/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowUpRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowWrap/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowWrap/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowWrapOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ArrowWrapOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Attach/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AttachText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Autocorrect/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Autocorrect/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Autocorrect/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Autocorrect/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitHeight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitHeight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitHeight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitHeight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitWidth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitWidth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitWidth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoFitWidth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoSum/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoSum/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoSum/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoSum/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoSum/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/AutoSum/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backpack/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BackpackAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backspace/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backspace/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backspace/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backspace/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backspace/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Backspace/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Badge/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Badge/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Badge/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Badge/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Balloon/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BarcodeScanner/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BarcodeScanner/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BarcodeScanner/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BarcodeScanner/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery0/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery0/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery0/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery0/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery1/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery1/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery10/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery10/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery10/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery10/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery2/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery2/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery2/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery2/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery3/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery3/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery3/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery3/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery4/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery4/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery4/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery4/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery5/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery5/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery5/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery5/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery6/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery6/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery6/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery6/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery7/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery7/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery7/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery7/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery8/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery8/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery8/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery8/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery9/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery9/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery9/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Battery9/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCharge/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCharge/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCharge/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCharge/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatterySaver/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatterySaver/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatterySaver/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatterySaver/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryWarning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryWarning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryWarning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BatteryWarning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beach/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Beaker/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BeakerSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bed/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bed/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bed/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bed/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bed/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bed/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BezierCurveSquare/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BezierCurveSquare/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BezierCurveSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BezierCurveSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinderTriangle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinFull/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinFull/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinFull/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BinFull/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bluetooth/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothConnected/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothConnected/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothConnected/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothConnected/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothDisabled/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothDisabled/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothDisabled/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothDisabled/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothSearching/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothSearching/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothSearching/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BluetoothSearching/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Blur/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Board/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardGames/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardGames/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardHeart/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardHeart/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardHeart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardHeart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardHeart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardHeart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoardSplit/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Book/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Book/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Book/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Book/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookArrowClockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookArrowClockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookArrowClockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookArrowClockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCoins/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCoins/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCoins/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCoins/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCompass/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCompass/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCompass/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookCompass/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookContacts/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDatabase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDatabase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDatabase/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDatabase/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDefault\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDefault/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDefault\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookExclamationMark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookExclamationMark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookExclamationMark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookExclamationMark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookGlobe/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookGlobe/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookGlobe/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookGlobe/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookInformation/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookInformation/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookInformation/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookInformation/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookLetter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookLetter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookLetter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookLetter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bookmark/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkMultiple/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookmarkSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookNumber/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookNumber/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookNumber/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookNumber/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookNumber/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookNumber/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpen/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenGlobe/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenGlobe/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenGlobe/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenGlobe/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookOpenMicrophone/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookPulse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookPulse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookPulse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookPulse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMark/ar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMark/ar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMarkRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMarkRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMarkRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookQuestionMarkRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookStar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookStar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookStar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookStar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookTemplate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookTemplate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookTheta/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookTheta/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookTheta/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookTheta/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BookToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderAll/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderAll/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderAll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderAll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderAll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderAll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomDouble/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomDouble/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomDouble/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomDouble/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomThick/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomThick/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomThick/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderBottomThick/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeftRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeftRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeftRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderLeftRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderNone/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderNone/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderNone/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderNone/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutside/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutside/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutside/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutside/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutsideThick/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutsideThick/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutsideThick/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderOutsideThick/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomDouble/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomDouble/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomDouble/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomDouble/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomThick/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomThick/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomThick/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BorderTopBottomThick/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bot/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bot/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bot/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bot/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotSparkle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotSparkle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotSparkle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BotSparkle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlChopsticks/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlSalad/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlSalad/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlSalad/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowlSalad/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowTie/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowTie/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowTie/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BowTie/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Box/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Box/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Box/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Box/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Box/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Box/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxMultipleSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxSearch/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxSearch/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BoxToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Braces/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesVariable/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesVariable/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesVariable/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BracesVariable/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrainCircuit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrainCircuit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrainCircuit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrainCircuit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Branch/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Branch/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Branch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Branch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Branch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Branch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchCompare/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchCompare/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchCompare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchCompare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchCompare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchCompare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchFork/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkHint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkHint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkHint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkHint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchForkLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchRequest/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BranchRequest/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BreakoutRoom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BreakoutRoom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BreakoutRoom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BreakoutRoom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BreakoutRoom/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BreakoutRoom/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Briefcase/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseMedical/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BriefcaseOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessHigh/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BrightnessLow/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BroadActivityFeed/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BroadActivityFeed/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BroadActivityFeed/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BroadActivityFeed/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BroadActivityFeed/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BroadActivityFeed/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Broom/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BubbleMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BubbleMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bug/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bug/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bug/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bug/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bug/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Bug/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BugArrowCounterclockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BugArrowCounterclockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BugProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BugProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Building/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBank/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankLink/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingBankToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingDesktop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingDesktop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingDesktop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingDesktop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingDesktop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingDesktop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingFactory/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingGovernment/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingGovernment/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingGovernment/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingGovernment/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingGovernment/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingGovernment/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingHome/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingHome/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingHome/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingHome/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingHome/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingHome/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingLighthouse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingLighthouse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingMore/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingMore/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingPeople/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingPeople/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingPeople/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingPeople/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingPeople/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingPeople/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetail/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetail/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMoney/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMoney/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMoney/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMoney/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMore/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMore/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMore/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMore/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMore/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailMore/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailShield/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailShield/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingRetailToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingShop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingShop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingShop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingShop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingShop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingShop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingSkyscraper/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingSkyscraper/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingSkyscraper/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingSkyscraper/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingSkyscraper/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingSkyscraper/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingTownhouse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingTownhouse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingTownhouse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingTownhouse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingTownhouse/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/BuildingTownhouse/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Button/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Button/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Button/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Button/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calculator/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calculator/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calculator/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calculator/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calculator/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calculator/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorArrowClockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorArrowClockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorArrowClockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorArrowClockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalculatorMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Calendar3Day/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAgenda/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAgenda/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAgenda/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAgenda/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAgenda/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAgenda/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowCounterclockwise/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAssistant/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAssistant/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAssistant/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAssistant/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAssistant/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarAssistant/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCancel/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCancel/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCancel/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCancel/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCancel/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCancel/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarChat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarChat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarChat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarChat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarCheckmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarClock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarClock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDataBar/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarDay/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarEmpty/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarError/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarError/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarInfo/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarInfo/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarInfo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarInfo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLock/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarLTR/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMail/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMail/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMention/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMention/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMonth/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarMultiple/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPattern/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPattern/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPattern/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPattern/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPhone/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPhone/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPhone/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPhone/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarPlay/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarQuestionMark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarQuestionMark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarQuestionMark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarQuestionMark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarQuestionMark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarQuestionMark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarReply/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarRTL/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSearch/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSearch/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSettings/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarShield/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarStar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarStar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarStar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarStar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarStar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarStar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToday/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekNumbers/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekNumbers/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekNumbers/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekNumbers/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekStart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekStart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekStart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekStart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekStart/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWeekStart/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalendarWorkWeek/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Call/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallConnecting/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallConnecting/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallEnd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallExclamation/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallExclamation/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallForward/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPenCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPenCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPenError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPenError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPenQuestionMark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CalligraphyPenQuestionMark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallInbound/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallMissed/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallOutbound/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPark/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPause/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPause/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPause/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallPause/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallProhibited/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallTransfer/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallWarning/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallWarning/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallWarning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CallWarning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Camera/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraDome/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSparkles/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSparkles/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSparkles/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSparkles/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSparkles/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSparkles/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSwitch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSwitch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSwitch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CameraSwitch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CardUI/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CardUI/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CardUI/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CardUI/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretDownRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CaretUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cart/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cart/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cast/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cast/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cast/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cast/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cast/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cast/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CatchUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CatchUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CatchUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CatchUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CatchUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CatchUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CD/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CD/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular3G/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular3G/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular3G/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular3G/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular4G/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular4G/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular4G/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular4G/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular5G/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular5G/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular5G/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cellular5G/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData1/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData1/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData2/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData2/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData2/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData2/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData3/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData3/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData3/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData3/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData4/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData4/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData4/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData4/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData5/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData5/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData5/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularData5/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularWarning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularWarning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularWarning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CellularWarning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CenterVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Certificate/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Certificate/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Certificate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Certificate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Certificate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Certificate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Channel/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelAlert/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelArrowLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelDismiss/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelShare/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChannelSubtract/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChartPerson/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chat/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowDoubleBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowDoubleBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowDoubleBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatArrowDoubleBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubbles/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubbles/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubbles/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubbles/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatBubblesQuestion/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatCursor/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatCursor/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatCursor/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatCursor/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatCursor/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatCursor/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatEmpty/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatHelp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatHelp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatHelp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatHelp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultiple/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatMultipleHeart/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatSparkle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatVideo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatVideo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatVideo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatVideo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatWarning/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatWarning/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatWarning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatWarning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatWarning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChatWarning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Check/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Check/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Check/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Check/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox1/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox1/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox2/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox2/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox2/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkbox2/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxChecked/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxChecked/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxChecked/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxChecked/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxChecked/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxChecked/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxCheckedSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxCheckedSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxCheckedSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxCheckedSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxIndeterminate/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxIndeterminate/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxIndeterminate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxIndeterminate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxIndeterminate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxIndeterminate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxUnchecked/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxWarning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxWarning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxWarning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckboxWarning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Checkmark/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkCircle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkLock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkLock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkNote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkNote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkStarburst/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkStarburst/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkStarburst/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkStarburst/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkStarburst/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkStarburst/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkUnderlineCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkUnderlineCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkUnderlineCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CheckmarkUnderlineCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chess/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Chess/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronCircleUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDoubleUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDownUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDownUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDownUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDownUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDownUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronDownUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUpDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUpDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUpDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUpDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUpDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ChevronUpDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Circle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleEraser/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleEraser/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHalfFill/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHint/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHint/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleHint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleImage/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleLine/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleLine/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleLine/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleLine/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleLine/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleLine/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleMultipleSubtractCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleMultipleSubtractCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleSmall/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleSmall/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleSmall/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CircleSmall/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/City/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/City/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/City/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/City/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/City/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/City/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Class/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Class/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Class/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Class/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Classification/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Classification/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Classification/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Classification/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Classification/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Classification/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClearFormatting/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClearFormatting/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClearFormatting/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClearFormatting/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClearFormatting/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClearFormatting/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard3Day/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard3Day/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard3Day/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard3Day/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard3Day/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clipboard3Day/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardBulletListRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCode/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCode/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCode/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCode/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCode/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardCode/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDataBar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDataBar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDataBar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDataBar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDataBar/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDataBar/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDay/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDay/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDay/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardDay/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardError/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardError/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardHeart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardHeart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardHeart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardHeart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardImage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardImage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardImage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardImage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLetter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLetter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLetter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLetter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLetter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLetter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMonth/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMonth/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMonth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMonth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMonth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMonth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMore/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMore/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMore/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMore/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardNote/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardNote/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardNote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardNote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPaste/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPaste/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPaste/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPaste/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPaste/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPaste/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPulse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPulse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPulse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardPulse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTask/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTask/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTask/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTask/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTask/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTask/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTaskListRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardText/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardText/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextEdit/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextEdit/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextLTR/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClipboardTextRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clock/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockAlarm/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockArrowDownload/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockArrowDownload/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockArrowDownload/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockArrowDownload/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockLock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockLock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockPause/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockPause/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockPause/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockPause/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClockToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaption/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ClosedCaptionOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cloud/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArchive/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowDown/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudArrowUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudCheckmark/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDatabase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDatabase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDesktop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDesktop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudDismiss/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudError/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudFlow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudFlow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudFlow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudFlow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSwap/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSwap/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSwap/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSwap/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudSync/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CloudWords/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Clover/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Code/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Code/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Code/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Code/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Code/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Code/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeBlock/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCSRectangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeCSRectangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeFS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeFS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeFSRectangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeFSRectangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeJS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeJS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeJSRectangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeJSRectangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodePY/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodePY/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodePYRectangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodePYRectangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeRB/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeRB/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeRBRectangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeRBRectangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeText/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeText/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTextEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTextEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTextOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTextOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTSRectangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeTSRectangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeVB/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeVB/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeVBRectangle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CodeVBRectangle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Collections/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Collections/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Collections/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Collections/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CollectionsAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CollectionsAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CollectionsAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CollectionsAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Color/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Color/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Color/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Color/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Color/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Color/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorBackground/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorBackground/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorBackground/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorBackground/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorBackgroundAccent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorBackgroundAccent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFill/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFillAccent/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFillAccent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFillAccent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorFillAccent/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLine/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLine/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLine/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLine/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLine/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLine/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLineAccent/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLineAccent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColorLineAccent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Column/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Column/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnDoubleCompare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnDoubleCompare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnSingle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnSingle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnSingleCompare/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnSingleCompare/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnSingleCompare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnSingleCompare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTriple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTriple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTriple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTriple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTripleEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTripleEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTripleEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ColumnTripleEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comma/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comma/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comma/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comma/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Comment/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempLTR/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowLeftTempRTL/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempLTR/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentArrowRightTempRTL/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentCheckmark/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentError/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentError/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLightning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLightning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLightning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLightning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentLink/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMention/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMention/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMention/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMention/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMention/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMention/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultiple/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleCheckmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentMultipleLink/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/ar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/ar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/he/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentNote/he/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommentOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Communication/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Communication/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Communication/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Communication/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Communication/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Communication/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommunicationPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommunicationPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommunicationPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CommunicationPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CompassNorthwest/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Component2DoubleTapSwipeDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Component2DoubleTapSwipeDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Component2DoubleTapSwipeUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Component2DoubleTapSwipeUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Compose/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cone/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cone/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConferenceRoom/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connected/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connected/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connected/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connected/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connector/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connector/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connector/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connector/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connector/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Connector/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCard/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardGroup/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContactCardRibbon/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentSettings/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentView/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentViewGallery/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentViewGallery/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentViewGallery/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentViewGallery/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentViewGallery/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContentViewGallery/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ContractDownLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ControlButton/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ControlButton/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ControlButton/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ControlButton/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConvertRange/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConvertRange/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConvertRange/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ConvertRange/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cookies/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cookies/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cookies/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cookies/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Copy/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopyArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopySelect/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopySelect/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopySelect/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CopySelect/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Couch/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardClock/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CreditCardToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crop/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterim/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterim/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterim/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterim/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterimOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterimOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterimOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropInterimOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropSparkle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CropSparkle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Crown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cube/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeArrowCurveDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeArrowCurveDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeQuick/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeRotate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeRotate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeTree/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeTree/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeTree/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CubeTree/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarEuro/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarEuro/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarEuro/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarEuro/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarEuro/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarEuro/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarRupee/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarRupee/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarRupee/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarRupee/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarRupee/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CurrencyDollarRupee/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cursor/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cursor/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cursor/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cursor/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cursor/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cursor/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorClick/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorClick/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorClick/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorClick/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHover/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorHoverOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/CursorProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cut/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cut/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cut/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Cut/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DarkTheme/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DarkTheme/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DarkTheme/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DarkTheme/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataArea/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataArea/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataArea/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataArea/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarHorizontalDescending/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarHorizontalDescending/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVertical/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalAscending/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalAscending/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataBarVerticalStar/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Database/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseLightning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseLightning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseMultiple/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseMultiple/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabasePerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabasePerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabasePerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabasePerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabasePlugConnected/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabasePlugConnected/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseStack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseStack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseSwitch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseSwitch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseWarning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseWarning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseWindow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DatabaseWindow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataFunnel/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataFunnel/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataFunnel/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataFunnel/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataHistogram/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataHistogram/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataHistogram/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataHistogram/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataHistogram/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataHistogram/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataLine/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataLine/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataLine/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataLine/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataPie/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataPie/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataPie/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataPie/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataScatter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataScatter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataScatter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataScatter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataSunburst/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataSunburst/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataSunburst/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataSunburst/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTreemap/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTreemap/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTreemap/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTreemap/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataTrending/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataUsageToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWaterfall/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWaterfall/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWaterfall/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWaterfall/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWhisker/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWhisker/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWhisker/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DataWhisker/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DecimalArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Delete/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteArrowBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteArrowBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteArrowBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteArrowBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteLines/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteLines/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeleteOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dentist/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesignIdeas/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesignIdeas/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesignIdeas/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesignIdeas/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesignIdeas/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesignIdeas/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Desktop/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopCursor/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopFlow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopFlow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopFlow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopFlow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopKeyboard/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopMac/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopPulse/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSignal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSignal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSignal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSignal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeaker/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeaker/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeaker/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeaker/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeakerOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeakerOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeakerOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSpeakerOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopTower/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopTower/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopTower/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DesktopTower/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoard/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoard/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoard/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoard/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoard/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoard/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardLightning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardLightning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardLightningToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardLightningToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeveloperBoardSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceEQ/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceEQ/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceEQ/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceEQ/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceEQ/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceEQ/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoom/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DeviceMeetingRoomRemote/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diagram/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diagram/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diagram/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diagram/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dialpad/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DialpadOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DialpadOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DialpadOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DialpadOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diamond/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Directions/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Directions/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Directions/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Directions/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Directions/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Directions/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dishwasher/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dismiss/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissCircle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquareMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquareMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquareMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DismissSquareMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Diversity/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerShort/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerShort/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerShort/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerShort/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerShort/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerShort/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerTall/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerTall/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerTall/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerTall/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerTall/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DividerTall/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DockRow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DockRow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DockRow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DockRow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Doctor/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document100/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document100/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document100/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document100/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document100/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Document100/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorder/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorder/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorder/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorder/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorder/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorder/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorderPrint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorderPrint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorderPrint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorderPrint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorderPrint/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBorderPrint/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBriefcase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBriefcase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBriefcase/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBriefcase/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletList/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletList/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletList/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletList/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletList/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletList/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListCube/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListCube/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListCube/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListCube/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListCube/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListCube/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentBulletListOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCatchUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCatchUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCatchUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCatchUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCatchUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCatchUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentChevronDouble/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentChevronDouble/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentChevronDouble/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentChevronDouble/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentContract/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentContract/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCopy/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCSS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCSS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCSS/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCSS/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCSS/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentCSS/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentData/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDatabase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDatabase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDatabase/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDatabase/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDataLink/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEndnote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEndnote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEndnote/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentEndnote/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentError/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentError/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFlowchart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFlowchart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFlowchart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFlowchart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFolder/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFolder/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFolder/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFolder/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFolder/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFolder/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooterDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooterDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooterDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFooterDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentFS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeader/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeader/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeader/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeader/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeader/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeader/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderArrowDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderArrowDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderArrowDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderArrowDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderFooter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderFooter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderFooter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderFooter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderFooter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeaderFooter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeartPulse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeartPulse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeartPulse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentHeartPulse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentImage/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentImage/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentImage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentImage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJAVA/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJAVA/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJAVA/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJAVA/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJavascript/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJavascript/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJavascript/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJavascript/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentJS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentKey/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentKey/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscape/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscape/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscape/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscape/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeData/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeData/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeData/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeData/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplitHint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplitHint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplitHint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLandscapeSplitHint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentLock/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMargins/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMargins/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMargins/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMargins/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMention/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiplePercent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiplePercent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiplePercent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultiplePercent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultipleProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultipleProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultipleProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultipleProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultipleSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentMultipleSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentNumber1/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentNumber1/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePage/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePage/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageBeaker/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageBeaker/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageColumns/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageColumns/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageColumns/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageColumns/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageSparkle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageSparkle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageSparkle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageSparkle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageSparkle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentOnePageSparkle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomCenter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomCenter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomCenter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomCenter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBottomRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBreak/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBreak/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBreak/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageBreak/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageNumber/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageNumber/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageNumber/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageNumber/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopCenter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopCenter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopCenter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopCenter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPageTopRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPDF/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPercent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPercent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPercent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPercent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPill/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPill/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPill/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPill/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPrint/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPY/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentPY/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQuestionMark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQuestionMark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQuestionMark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQuestionMark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQuestionMark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQuestionMark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueue/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueue/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueue/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueue/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentQueueMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRB/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRB/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentRibbon/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSASS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSASS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSASS/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSASS/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSave/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSave/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSave/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSave/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSearch/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSearch/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHint/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHint/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHintOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHintOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHintOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHintOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHintOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSplitHintOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentSync/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTable/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTable/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTable/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTable/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTable/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTable/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCube/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCube/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCube/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableCube/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableTruck/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableTruck/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableTruck/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTableTruck/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTarget/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTarget/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentText/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentText/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextExtract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextExtract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextExtract/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextExtract/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTextToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTS/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentTS/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentVB/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentVB/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentWidth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentWidth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentWidth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentWidth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentYML/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentYML/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentYML/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DocumentYML/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Door/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Door/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Door/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Door/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Door/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Door/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorArrowRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorTag/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorTag/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorTag/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoorTag/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleSwipeUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DoubleTapSwipeUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drafts/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drafts/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drafts/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drafts/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drafts/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drafts/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drag/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drag/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drag/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drag/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerArrowDownload/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerArrowDownload/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerArrowDownload/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerArrowDownload/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerPlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerPlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerPlay/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerPlay/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerSubtract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerSubtract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerSubtract/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawerSubtract/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawImage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawImage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawImage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawImage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawShape/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawShape/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawShape/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawShape/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrawText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBeer/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBeer/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBeer/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBeer/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBeer/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBeer/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottleOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottleOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottleOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkBottleOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkCoffee/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkCoffee/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkCoffee/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkCoffee/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkCoffee/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkCoffee/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkMargarita/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkMargarita/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkMargarita/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkMargarita/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkMargarita/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkMargarita/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkToGo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkToGo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkToGo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkToGo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkWine/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkWine/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkWine/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkWine/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkWine/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DrinkWine/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DriveTrain/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DriveTrain/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DriveTrain/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DriveTrain/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Drop/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClosedAlert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClosedAlert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClosedAlert/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenClosedAlert/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDesktop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDesktop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDesktop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDesktop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenGroup/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenGroup/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenGroup/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenGroup/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenHeader/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenHeader/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenHeader/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenHeader/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenMirror/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenMirror/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenMirror/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenMirror/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenPagination/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenPagination/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenPagination/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenPagination/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpan/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpan/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpan/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpan/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpeaker/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpeaker/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpeaker/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenSpeaker/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenStatusBar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenStatusBar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenStatusBar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenStatusBar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenTablet/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenTablet/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenTablet/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenTablet/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenUpdate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenUpdate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenUpdate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenUpdate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVerticalScroll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVerticalScroll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVerticalScroll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVerticalScroll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVibrate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVibrate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVibrate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/DualScreenVibrate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dumbbell/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dust/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dust/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dust/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dust/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dust/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Dust/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Earth/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EarthLeaf/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Edit/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditArrowBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditArrowBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditArrowBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditArrowBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditArrowBack/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditArrowBack/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditProhibited/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EditSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Elevator/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Emoji/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAngry/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAngry/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAngry/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAngry/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAngry/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiAngry/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiEdit/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHand/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiHint/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiLaugh/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiLaugh/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiLaugh/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiLaugh/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiLaugh/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiLaugh/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMeh/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMeh/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMeh/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMeh/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMeh/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMeh/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSad/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSad/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSad/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSad/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSad/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSad/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSadSlight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSadSlight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSadSlight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSadSlight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSmileSlight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSmileSlight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSmileSlight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSmileSlight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSparkle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSurprise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSurprise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSurprise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EmojiSurprise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Engine/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Engine/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Engine/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Engine/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EqualOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eraser/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eraser/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eraser/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eraser/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserMedium/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserMedium/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserMedium/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserMedium/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSegment/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSegment/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSegment/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSegment/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSmall/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSmall/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSmall/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserSmall/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserTool/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserTool/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserTool/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EraserTool/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircleSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircleSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircleSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ErrorCircleSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExpandUpRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExtendedDock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExtendedDock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExtendedDock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ExtendedDock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eye/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eyedropper/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eyedropper/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eyedropper/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eyedropper/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eyedropper/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Eyedropper/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyedropperOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyedropperOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyedropperOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyedropperOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeLines/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTracking/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTracking/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTracking/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTracking/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTracking/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTracking/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTrackingOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTrackingOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTrackingOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTrackingOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTrackingOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/EyeTrackingOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastAcceleration/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastAcceleration/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastAcceleration/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastAcceleration/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FastForward/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fax/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fax/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fax/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fax/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Feed/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filmstrip/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripPlay/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilmstripSplit/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Filter/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FilterSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fingerprint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fingerprint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fingerprint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fingerprint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fingerprint/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fingerprint/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fire/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fire/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fire/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fire/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fire/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fire/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fireplace/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FixedWidth/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FixedWidth/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FixedWidth/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FixedWidth/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flag/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagCheckered/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagCheckered/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagClock/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagPride/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagPride/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagPride/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagPride/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlagPride/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flash/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashAuto/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashAuto/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashAuto/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashAuto/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashCheckmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashFlow/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashFlow/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashFlow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashFlow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashFlow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashFlow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flashlight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flashlight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flashlight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flashlight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flashlight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flashlight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashlightOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashlightOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashlightOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashlightOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashPlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashPlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlashSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipHorizontal/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlipVertical/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flow/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flow/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flowchart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flowchart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flowchart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Flowchart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlowchartCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlowchartCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlowchartCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FlowchartCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluent/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluid/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluid/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluid/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluid/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluid/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Fluid/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Folder/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderArrowUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderBriefcase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderBriefcase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderGlobe/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderGlobe/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderGlobe/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderGlobe/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderLink/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderList/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderList/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderList/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderList/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMail/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpen/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpen/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpenVertical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpenVertical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpenVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderOpenVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPeople/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPeople/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPeople/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPeople/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderProhibited/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSwap/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSwap/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSwap/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSwap/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSwap/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSwap/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderZip/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderZip/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderZip/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderZip/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderZip/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FolderZip/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontDecrease/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontDecrease/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontDecrease/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontDecrease/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontIncrease/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontIncrease/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontIncrease/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontIncrease/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingIn/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FontSpaceTrackingOut/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Food/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Food/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Food/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Food/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Food/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Food/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodApple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodApple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodApple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodApple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCake/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCarrot/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCarrot/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCarrot/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodCarrot/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodChickenLeg/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodEgg/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodEgg/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodEgg/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodEgg/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodEgg/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodEgg/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodFish/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodFish/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodFish/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodFish/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodGrains/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodGrains/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodGrains/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodGrains/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodPizza/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodPizza/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodPizza/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodPizza/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodToast/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodToast/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodToast/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodToast/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodToast/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FoodToast/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Form/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormMultiple/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FormNew/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS120/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS120/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS120/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS120/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS240/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS240/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS240/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS240/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS30/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS60/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS960/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS960/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS960/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FPS960/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Frame/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Frame/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Frame/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Frame/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Frame/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Frame/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FStop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMaximize/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMaximize/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMaximize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMaximize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMaximize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMaximize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMinimize/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMinimize/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMinimize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMinimize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMinimize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/FullScreenMinimize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Games/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GanttChart/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GanttChart/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GanttChart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GanttChart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GanttChart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GanttChart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gas/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gas/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gas/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gas/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GasPump/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GasPump/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GasPump/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GasPump/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gather/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gather/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gauge/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gauge/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gauge/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gauge/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gauge/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gauge/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GaugeAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GaugeAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gavel/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GavelProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GavelProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GavelProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GavelProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gesture/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gesture/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gesture/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gesture/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GIF/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GIF/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GIF/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GIF/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GIF/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GIF/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gift/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gift/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gift/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gift/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gift/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Gift/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCard/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCard/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCard/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCard/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCard/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCard/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMoney/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMoney/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMoney/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMoney/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftCardMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftOpen/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftOpen/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftOpen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftOpen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftOpen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GiftOpen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glance/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glance/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glance/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glance/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glance/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glance/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceDefault/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceDefault/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontalSparkles/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontalSparkles/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontalSparkles/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlanceHorizontalSparkles/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Glasses/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlassesOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Globe/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeClock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeClock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeDesktop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeDesktop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeDesktop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeDesktop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeLocation/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeLocation/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeLocation/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeLocation/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobePerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobePerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobePerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobePerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeShield/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeShield/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeStar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeStar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeStar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeStar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSurface/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSurface/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSurface/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSurface/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSurface/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeSurface/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GlobeVideo/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Grid/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridCircles/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridCircles/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridCircles/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridCircles/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridDots/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridDots/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridDots/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridDots/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridDots/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridDots/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridKanban/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridKanban/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridKanban/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GridKanban/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Group/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Group/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Group/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Group/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupList/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupList/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupList/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupList/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupReturn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupReturn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupReturn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GroupReturn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guardian/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guest/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GuestAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GuestAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GuestAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/GuestAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Guitar/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandDraw/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandLeftChat/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandOpenHeart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandOpenHeart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandOpenHeart/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandOpenHeart/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRightOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandRightOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Handshake/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandWave/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandWave/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandWave/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandWave/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandWave/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HandWave/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HardDrive/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HardDrive/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HardDrive/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HardDrive/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HatGraduation/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HD/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HD/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HD/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HD/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HD/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HD/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDROff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDROff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDROff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HDROff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headphones/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadphonesSoundWave/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Headset/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetVR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetVR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetVR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeadsetVR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Heart/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartBroken/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartBroken/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartBroken/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartBroken/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartBroken/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartBroken/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartCircleHint/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartPulse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartPulse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartPulse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartPulse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartPulse/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HeartPulse/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Highlight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Highlight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Highlight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Highlight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Highlight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Highlight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HighlightAccent/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HighlightAccent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HighlightAccent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HighlightLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HighlightLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/History/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HistoryDismiss/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Home/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeDatabase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeDatabase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeDatabase/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeDatabase/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeDatabase/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeDatabase/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeMore/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomePerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomePerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomePerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomePerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HomeSplit/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Hourglass/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Hourglass/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Hourglass/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Hourglass/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Hourglass/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Hourglass/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassHalf/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassHalf/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassHalf/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassHalf/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassHalf/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassHalf/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassOneQuarter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassOneQuarter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassOneQuarter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassOneQuarter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassOneQuarter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassOneQuarter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassThreeQuarter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassThreeQuarter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassThreeQuarter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassThreeQuarter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassThreeQuarter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/HourglassThreeQuarter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Icons/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Icons/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Icons/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Icons/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Image/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAltText/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAltText/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAltText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAltText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAltText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageAltText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/ar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/ar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/he/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowBack/he/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowCounterclockwise/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowCounterclockwise/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowCounterclockwise/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowCounterclockwise/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/ar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/ar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/he/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageArrowForward/he/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageBorder/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCircle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCopy/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCopy/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCopy/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCopy/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCopy/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageCopy/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageGlobe/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageGlobe/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageGlobe/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageGlobe/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultiple/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultipleOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultipleOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultipleOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageMultipleOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageReflection/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageReflection/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageReflection/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageReflection/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageShadow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageShadow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageShadow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageShadow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageStack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageStack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageStack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageStack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImageTable/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ImmersiveReader/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Important/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Incognito/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Incognito/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Incognito/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Incognito/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Info/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InfoShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InfoShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingTool/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingToolAccent/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingToolAccent/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingToolAccent/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkingToolAccent/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStroke/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStroke/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStroke/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStroke/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowUpDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowUpDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowUpDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InkStrokeArrowUpDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/InPrivateAccount/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Insert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Insert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/iOSArrowLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/iOSArrowLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/iOSArrowRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/iOSArrowRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/iOSChevronRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/iOSChevronRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoT/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoT/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoT/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoT/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoT/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoT/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoTAlert/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoTAlert/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoTAlert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoTAlert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoTAlert/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/IoTAlert/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/JavaScript/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/JavaScript/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/JavaScript/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/JavaScript/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/JavaScript/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/JavaScript/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Joystick/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Joystick/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Key/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard123/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard123/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard123/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Keyboard123/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardDock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardDock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardDock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardDock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutFloat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutFloat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutFloat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutFloat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutOneHandedLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutOneHandedLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutOneHandedLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutOneHandedLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutResize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutResize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutResize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutResize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutSplit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutSplit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutSplit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardLayoutSplit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardMouse/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardMouse/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShift/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShift/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShift/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShift/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShift/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShift/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShiftUppercase/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShiftUppercase/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShiftUppercase/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShiftUppercase/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShiftUppercase/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardShiftUppercase/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardTab/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardTab/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardTab/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyboardTab/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyCommand/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyCommand/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyCommand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyCommand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyCommand/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyCommand/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyReset/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyReset/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyReset/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/KeyReset/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Laptop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopShield/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopShield/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaptopShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaserTool/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LaserTool/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lasso/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lasso/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lasso/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lasso/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lasso/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lasso/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LauncherSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LauncherSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LauncherSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LauncherSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Layer/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Layer/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Layer/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Layer/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LayerDiagonal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LayerDiagonal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LayerDiagonalPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LayerDiagonalPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafOne/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafThree/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafThree/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafThree/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafThree/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafThree/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafThree/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LeafTwo/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LearningApp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LearningApp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LearningApp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LearningApp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Library/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lightbulb/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbFilament/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LightbulbPerson/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Likert/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Likert/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Likert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Likert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Likert/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Likert/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Line/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineDashes/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal3/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal3/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4Search/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4Search/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4Search/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal4Search/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal5/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal5/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal5Error/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineHorizontal5Error/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineStyle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineStyle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineStyle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineStyle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineThickness/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineThickness/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineThickness/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LineThickness/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Link/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LinkToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/List/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTree/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTree/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTree/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTree/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTreeOffset/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTreeOffset/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTreeOffset/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListBarTreeOffset/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ListRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Live/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Live/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Live/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Live/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LiveOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LiveOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LiveOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LiveOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/en/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ja/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ja/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ja/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ja/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/ko/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/zh/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/zh/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/zh/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocalLanguage/zh/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Location/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAddLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAddLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAddRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAddRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAddUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationAddUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrow/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationArrowUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationLive/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationLive/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationLive/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationLive/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LocationOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosed/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosedKey/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosedKey/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosedKey/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosedKey/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosedKey/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockClosedKey/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockOpen/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockShield/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockShield/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockShield/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/LockShield/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lottery/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lottery/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lottery/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Lottery/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Luggage/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mail/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAlert/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllRead/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllUnread/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAllUnread/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDoubleBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDoubleBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDoubleBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDoubleBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDoubleBack/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDoubleBack/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowForward/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowForward/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowForward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowForward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailAttach/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailClock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailClock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCopy/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCopy/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCopy/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailCopy/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailError/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailError/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInbox/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxAll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowDown/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowDown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxCheckmark/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailInboxDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailList/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOpenPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOpenPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOpenPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOpenPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOpenPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailOpenPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailPause/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailPause/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailPause/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailPause/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailProhibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailRead/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailReadMultiple/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailShield/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailShield/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailTemplate/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailTemplate/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailTemplate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailTemplate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailTemplate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailTemplate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailUnread/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailWarning/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailWarning/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailWarning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailWarning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailWarning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MailWarning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Map/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Map/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Map/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Map/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Map/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Map/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MapDrive/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MapDrive/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MapDrive/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MapDrive/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MapDrive/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MapDrive/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Markdown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Markdown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MatchAppLayout/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MatchAppLayout/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MatchAppLayout/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MatchAppLayout/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatLinear/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatLinear/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatLinear/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatLinear/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatProfessional/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatProfessional/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatProfessional/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatProfessional/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatProfessional/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormatProfessional/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathFormula/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MathSymbols/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Maximize/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MeetNow/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Megaphone/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneLoud/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MegaphoneOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Memory/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Memory/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mention/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MentionArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MentionArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MentionBrackets/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MentionBrackets/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Merge/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Merge/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Merge/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Merge/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Merge/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Merge/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mic/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicProhibited/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulse/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicPulseOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Microscope/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Microscope/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Microscope/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Microscope/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSparkle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSparkle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSparkle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSparkle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSparkle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSparkle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MicSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Midi/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Midi/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Midi/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Midi/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MobileOptimized/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MobileOptimized/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MobileOptimized/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MobileOptimized/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mold/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mold/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mold/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mold/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mold/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Mold/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Molecule/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Money/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Money/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Money/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Money/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Money/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Money/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyCalculator/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyCalculator/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyCalculator/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyCalculator/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyHand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyHand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyHand/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyHand/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneyOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneySettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoneySettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreCircle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreHorizontal/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoreVertical/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationBottom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationBottom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationBottom/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationBottom/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationBottom/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationBottom/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationTop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationTop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationTop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationTop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationTop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainLocationTop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainTrail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainTrail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainTrail/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainTrail/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainTrail/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MountainTrail/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoviesandTV/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoviesandTV/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoviesandTV/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoviesandTV/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoviesandTV/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MoviesandTV/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier_5x/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_2x/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_5x/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1_8x/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier1x/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Multiplier2x/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectLTR/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectLTR/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectLTR/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectLTR/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectLTR/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectLTR/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectRTL/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectRTL/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectRTL/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectRTL/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectRTL/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MultiselectRTL/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote1/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote1/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2Play/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNote2Play/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff1/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff1/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff2/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff2/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff2/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff2/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff2/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MusicNoteOff2/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/MyLocation/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Navigation/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Navigation/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Navigation/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Navigation/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Navigation/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Navigation/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationLocationTarget/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationLocationTarget/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationPlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationPlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationUnread/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationUnread/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationUnread/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NavigationUnread/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NetworkAdapter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NetworkAdapter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NetworkCheck/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NetworkCheck/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NetworkCheck/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NetworkCheck/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/New/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/New/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/New/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/New/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/New/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/New/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/News/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Next/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Note/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notebook/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookArrowCurveDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookArrowCurveDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookEye/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookEye/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookLightning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookLightning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookLightning/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookLightning/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookQuestionMark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookQuestionMark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookQuestionMark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookQuestionMark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSection/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSection/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSection/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSection/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSectionArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSectionArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSectionArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSectionArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSubsection/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSubsection/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSubsection/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSubsection/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotebookSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NoteEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Notepad/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadEdit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadEdit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotepadPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotePin/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotePin/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotePin/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NotePin/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle1/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle2/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle3/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle4/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberCircle5/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberRow/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberRow/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberRow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberRow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberRow/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberRow/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbol/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/NumberSymbolSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Open/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenFolder/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OpenOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Options/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Organization/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OrganizationHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/OrganizationHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Orientation/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Orientation/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Orientation/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Orientation/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oval/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Oven/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingTop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingTop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingTop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaddingTop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PageFit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PageFit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PageFit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PageFit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PageFit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PageFit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrush/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrush/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrush/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrush/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrush/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrush/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowDown/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowDown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBrushArrowUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBucket/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBucket/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBucket/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBucket/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBucket/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PaintBucket/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pair/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pair/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pair/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pair/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelBottom/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelBottom/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelBottomContract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelBottomContract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelBottomExpand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelBottomExpand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeft/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftContract/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftExpand/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftFocusRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftFocusRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftFocusRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftFocusRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeader/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderKey/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderKey/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderKey/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderKey/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderKey/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftHeaderKey/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftKey/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftKey/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftKey/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftKey/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftKey/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftKey/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftText/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextAdd/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelLeftTextDismiss/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRight/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightContract/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightContract/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightContract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightContract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightContract/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightContract/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightCursor/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightCursor/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightCursor/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightCursor/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightExpand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelRightExpand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelSeparateWindow/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelSeparateWindow/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelTopContract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelTopContract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelTopExpand/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PanelTopExpand/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Password/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Password/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Password/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Password/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Password/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Password/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patient/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patient/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patient/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patient/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patient/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Patient/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pause/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PauseSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Payment/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pen/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenDismiss/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PenProhibited/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pentagon/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pentagon/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pentagon/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pentagon/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pentagon/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pentagon/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/People/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAudience/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAudience/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAudience/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleAudience/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCall/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCall/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCall/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCall/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCall/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCall/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunity/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunityAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunityAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunityAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunityAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunityAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleCommunityAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleError/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleError/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleError/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleError/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleError/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleError/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleList/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleMoney/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleMoney/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleMoney/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleMoney/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleQueue/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleQueue/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleQueue/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleQueue/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSettings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSettings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSettings/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSettings/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleStar/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSwap/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSync/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleSync/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeam/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamDelete/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamToolbox/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleTeamToolbox/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleToolbox/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleToolbox/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleToolbox/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PeopleToolbox/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person5/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person5/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person5/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person5/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person6/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person6/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person6/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Person6/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAccounts/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAccounts/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAccounts/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAccounts/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAlert/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAlert/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAlert/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAlert/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAlert/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAlert/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowBack/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowLeft/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowLeft/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowRight/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowRight/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAvailable/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAvailable/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAvailable/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAvailable/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAvailable/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonAvailable/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonBoard/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCall/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCall/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCall/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCall/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCall/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCall/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonChat/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonChat/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonChat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonChat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonChat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonChat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonClock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonClock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDelete/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDelete/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDelete/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDelete/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDelete/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDelete/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDesktop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonDesktop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonFeedback/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonHeart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonHeart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonHeart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonHeart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonInfo/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonInfo/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonInfo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonInfo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonKey/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonKey/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightbulb/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightbulb/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightbulb/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightbulb/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightning/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightning/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLightning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLink/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLock/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLock/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMail/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMoney/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMoney/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMoney/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonMoney/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonNote/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonNote/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonNote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonNote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonNote/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonNote/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonPill/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonPill/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonPill/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonPill/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonProhibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonQuestionMark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonQuestionMark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonQuestionMark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonQuestionMark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonQuestionMark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonQuestionMark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonRibbon/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonRibbon/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonRibbon/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonRibbon/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonRunning/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonRunning/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSearch/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSettings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSettings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStanding/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStanding/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStar/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStarburst/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStarburst/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStarburst/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonStarburst/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSubtract/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSubtract/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSubtract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSubtract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSupport/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSupport/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSupport/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSupport/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSupport/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSupport/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSwap/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSwap/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSwap/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSwap/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSwap/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSwap/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonSync/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonTag/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonVoice/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonVoice/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonVoice/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonVoice/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWalking/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWalking/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWalking/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWalking/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWalking/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWalking/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWrench/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PersonWrench/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Phone/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneChat/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneCheckmark/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneCheckmark/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktop/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktopAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDesktopAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEraser/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEraser/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEraser/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneEraser/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneKey/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneKey/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneKey/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneKey/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLaptop/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLinkSetup/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLinkSetup/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLinkSetup/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLinkSetup/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneLock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePageHeader/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePageHeader/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePageHeader/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePageHeader/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePagination/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePagination/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePagination/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhonePagination/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneScreenTime/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneScreenTime/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneScreenTime/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneScreenTime/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneShake/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneShake/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneShake/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneShake/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanIn/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpanOut/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpeaker/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpeaker/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpeaker/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneSpeaker/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneStatusBar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneStatusBar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneStatusBar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneStatusBar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneTablet/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneTablet/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneTablet/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneTablet/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdateCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdateCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdateCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneUpdateCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVerticalScroll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVerticalScroll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVerticalScroll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVerticalScroll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVibrate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVibrate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVibrate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhoneVibrate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhotoFilter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhotoFilter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhotoFilter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PhotoFilter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pi/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pi/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pi/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pi/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPicture/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPicture/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPicture/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPicture/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPicture/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPicture/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureEnter/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureEnter/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureEnter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureEnter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureEnter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureEnter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureExit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureExit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureExit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureExit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureExit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PictureInPictureExit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pill/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pin/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PinOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pipeline/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pipeline/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pipeline/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pipeline/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pipeline/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pipeline/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelineAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelineAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelineAdd/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelineAdd/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelineArrowCurveDown/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelineArrowCurveDown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelinePlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PipelinePlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pivot/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pivot/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pivot/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pivot/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantGrass/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantGrass/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantGrass/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantGrass/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantGrass/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantGrass/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantRagweed/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantRagweed/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantRagweed/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantRagweed/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantRagweed/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlantRagweed/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Play/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircleHint/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircleHint/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircleHint/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircleHint/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircleHint/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayCircleHint/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayingCards/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayingCards/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlayMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlaySettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlaySettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnected/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnected/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnected/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnected/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnectedAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnectedAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnectedCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugConnectedCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugDisconnected/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugDisconnected/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugDisconnected/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugDisconnected/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugDisconnected/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PlugDisconnected/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PointScan/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PointScan/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PointScan/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PointScan/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Poll/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Poll/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Poll/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Poll/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Poll/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Poll/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PollHorizontal/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PollHorizontal/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PollHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PollHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PollHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PollHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortHDMI/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortHDMI/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortHDMI/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortHDMI/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortMicroUSB/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortMicroUSB/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortMicroUSB/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortMicroUSB/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBA/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBA/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBA/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBA/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBC/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBC/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBC/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PortUSBC/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionBackward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionBackward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionBackward/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionBackward/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionForward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionForward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionForward/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionForward/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToBack/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToBack/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToBack/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToBack/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToFront/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToFront/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToFront/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PositionToFront/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Power/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Power/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Power/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Power/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Power/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Power/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Predictions/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Predictions/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Predictions/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Predictions/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Premium/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PremiumPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PremiumPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PremiumPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PremiumPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PremiumPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PremiumPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/10_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/10_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAvailable/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/10_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/10_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceAway/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\10_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBlocked/10_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\10_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBlocked/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBlocked/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBlocked/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBlocked/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\10_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBusy/10_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\10_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBusy/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBusy/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBusy/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceBusy/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/10_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/10_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceDND/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\10_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOffline/10_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\10_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOffline/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOffline/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOffline/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOffline/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\10_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOOF/10_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\10_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOOF/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOOF/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOOF/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceOOF/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\10_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceUnknown/10_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\10_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceUnknown/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceUnknown/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceUnknown/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenceUnknown/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Presenter/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Presenter/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Presenter/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Presenter/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenterOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenterOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenterOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PresenterOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PreviewLink/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PreviewLink/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PreviewLink/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PreviewLink/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PreviewLink/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PreviewLink/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Previous/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Print/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PrintAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PrintAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PrintAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PrintAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Production/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Production/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Production/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Production/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProductionCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProductionCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProductionCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProductionCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Prohibited/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedNote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProhibitedNote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreen/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenDismiss/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProjectionScreenText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProtocolHandler/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProtocolHandler/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProtocolHandler/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProtocolHandler/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProtocolHandler/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ProtocolHandler/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Pulse/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PulseSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PulseSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PulseSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PulseSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCube/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCubePiece/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzleCubePiece/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Puzzlepiece/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Puzzlepiece/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Puzzlepiece/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Puzzlepiece/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Puzzlepiece/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Puzzlepiece/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzlePieceShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/PuzzlePieceShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QRCode/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QRCode/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QRCode/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QRCode/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QRCode/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QRCode/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Question/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuestionCircle/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/QuizNew/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Radar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Radar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadarCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadarCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadarRectangleMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadarRectangleMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButton/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButton/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButton/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButton/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButton/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButton/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButtonOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RadioButtonOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RAM/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RAM/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RAM/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RAM/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatingMature/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatingMature/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatingMature/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatingMature/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatingMature/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatingMature/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatioOneToOne/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatioOneToOne/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatioOneToOne/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RatioOneToOne/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadAloud/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingList/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingListAdd/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingModeMobile/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingModeMobile/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingModeMobile/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReadingModeMobile/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RealEstate/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RealEstate/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RealEstate/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RealEstate/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Receipt/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptBag/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptBag/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptBag/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptBag/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptCube/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptCube/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptCube/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptCube/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptMoney/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptMoney/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptMoney/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptMoney/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptMoney/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptMoney/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptPlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptPlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptPlay/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptPlay/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSparkles/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSparkles/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSparkles/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSparkles/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSparkles/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReceiptSparkles/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Record/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RecordStop/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectangleLandscape/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectanglePortraitLocationTarget/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RectanglePortraitLocationTarget/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Recycle/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Recycle/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Recycle/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Recycle/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Remote/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Remote/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Remote/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Remote/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rename/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrder/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrder/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrder/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrder/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrder/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrder/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsHorizontal/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsHorizontal/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsHorizontal/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsHorizontal/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsHorizontal/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsHorizontal/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsVertical/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsVertical/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsVertical/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsVertical/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsVertical/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ReOrderDotsVertical/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Replay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Replay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Resize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Resize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Resize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Resize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeImage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeImage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeImage/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeImage/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeLarge/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeLarge/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeLarge/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeLarge/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeLarge/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeLarge/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeSmall/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeSmall/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeSmall/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeSmall/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeSmall/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeSmall/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeTable/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeTable/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeTable/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeTable/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeVideo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeVideo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeVideo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ResizeVideo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Reward/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rewind/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rhombus/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ribbon/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonAdd/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonAdd/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonAdd/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonAdd/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonOff/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonStar/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonStar/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonStar/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RibbonStar/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RoadCone/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rocket/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rocket/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rocket/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rocket/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rocket/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Rocket/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateLeft/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateLeft/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateLeft/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateLeft/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RotateRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Router/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Router/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Router/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Router/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RowTriple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RowTriple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RowTriple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RowTriple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RSS/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RSS/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RSS/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/RSS/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Ruler/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Run/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Run/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Run/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Run/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Run/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Run/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Sanitize/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Sanitize/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Sanitize/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Sanitize/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Save/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveArrowRight/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveArrowRight/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveArrowRight/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveArrowRight/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveCopy/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveCopy/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveCopy/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveCopy/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveImage/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveImage/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveSync/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SaveSync/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Savings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Savings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Savings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Savings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Savings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Savings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFill/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFill/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFill/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFill/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFit/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFit/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScaleFit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scales/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scales/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scales/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scales/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scales/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scales/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scan/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scan/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scan/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scan/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scan/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scan/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanCamera/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanDash/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanObject/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanObject/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanObject/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanObject/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanQRCode/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanQRCode/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTable/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTable/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTable/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTable/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanText/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUp/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanThumbUpOff/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanType/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanType/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanType/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanType/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTypeCheckmark/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTypeCheckmark/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTypeCheckmark/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTypeCheckmark/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTypeOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScanTypeOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scratchpad/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scratchpad/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scratchpad/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Scratchpad/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenCut/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenCut/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenSearch/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenSearch/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenSearch/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ScreenSearch/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Screenshot/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Screenshot/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Screenshot/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Screenshot/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Script/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Script/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Search/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchInfo/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchInfo/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchInfo/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchInfo/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchSettings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchSettings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchShield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchShield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchSquare/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchSquare/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchSquare/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchSquare/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchVisual/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchVisual/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchVisual/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchVisual/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchVisual/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SearchVisual/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOff/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOff/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOff/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOff/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOn/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOn/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOn/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectAllOn/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObject/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObject/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObject/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObject/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkew/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkew/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkew/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkew/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewDismiss/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewDismiss/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewDismiss/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewDismiss/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewEdit/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewEdit/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewEdit/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SelectObjectSkewEdit/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Send/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendBeaker/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendClock/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendClock/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendClock/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendClock/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendCopy/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendCopy/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendCopy/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SendCopy/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SerialPort/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SerialPort/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SerialPort/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SerialPort/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SerialPort/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SerialPort/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Server/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Server/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Server/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Server/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Server/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Server/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerPlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerPlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerSurface/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerSurface/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerSurfaceMultiple/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServerSurfaceMultiple/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServiceBell/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServiceBell/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServiceBell/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServiceBell/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServiceBell/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ServiceBell/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/32_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/32_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Settings/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsChat/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsChat/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsChat/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsChat/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsCogMultiple/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsCogMultiple/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsCogMultiple/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/SettingsCogMultiple/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeExclude/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeExclude/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeExclude/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeExclude/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeExclude/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeExclude/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeIntersect/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeIntersect/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeIntersect/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeIntersect/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeIntersect/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeIntersect/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shapes/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeSubtract/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeSubtract/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeSubtract/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeSubtract/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeSubtract/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeSubtract/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeUnion/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeUnion/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeUnion/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeUnion/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeUnion/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShapeUnion/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Share/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareAndroid/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareAndroid/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareAndroid/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareAndroid/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareCloseTray/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareCloseTray/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareCloseTray/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareCloseTray/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareiOS/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPerson/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlay/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonOverlayInside/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenPersonP/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStart/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/24_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/28_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/28_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/48_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/ShareScreenStop/48_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shield/12_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shield/12_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shield/16_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shield/16_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shield/20_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shield/20_r.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_r.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\24_f.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Microsoft.Fast.Components.FluentUI",
+ "RelativePath": "icons/Shield/24_f.svg",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\24_f.svg"
+ },
+ {
+ "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\24_r.svg",
+ "SourceId": "Microsoft.Fast.Components.FluentUI",
+ "SourceType": "Package",
+ "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\",
+ "BasePath": "_content/Mi